-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e011e84
commit 248ae7c
Showing
2 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ jobs: | |
matrix: | ||
os: [macos-latest] | ||
python-version: ["3.10"] | ||
model_version: [v1,, v2] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -34,7 +35,9 @@ jobs: | |
- name: Run | ||
shell: bash | ||
run: | | ||
d=sherpa-onnx-reverb-diarization-v1 | ||
v=${{ matrix.model_version }} | ||
export VERSION=$v | ||
d=sherpa-onnx-reverb-diarization-$v | ||
src=$PWD/$d | ||
mkdir -p $src | ||
|
@@ -72,7 +75,10 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "Fangjun Kuang" | ||
d=sherpa-onnx-reverb-diarization-v1 | ||
v=${{ matrix.model_version }} | ||
export VERSION=$v | ||
d=sherpa-onnx-reverb-diarization-$v | ||
export GIT_LFS_SKIP_SMUDGE=1 | ||
export GIT_CLONE_PROTECTION_ACTIVE=false | ||
git clone https://csukuangfj:[email protected]/csukuangfj/$d huggingface | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters