test-go-package #401
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
name: test-go-package | |
on: | |
schedule: | |
# minute (0-59) | |
# hour (0-23) | |
# day of the month (1-31) | |
# month (1-12) | |
# day of the week (0-6) | |
# nightly build at 15:50 UTC time every day | |
- cron: "50 15 * * *" | |
workflow_dispatch: | |
concurrency: | |
group: test-go-package-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-go-package: | |
name: ${{ matrix.os }} ${{matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
arch: amd64 | |
- os: macos-13 | |
arch: amd64 | |
- os: macos-14 | |
arch: arm64 | |
- os: windows-latest | |
arch: x64 | |
- os: windows-latest | |
arch: x86 # use 386 for GOARCH | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.12' | |
- name: Display go version | |
shell: bash | |
run: | | |
go version | |
go env GOPATH | |
go env GOARCH | |
- name: Set up MinGW for x64 | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x64' | |
uses: csukuangfj/[email protected] | |
with: | |
platform: ${{ matrix.arch }} | |
- name: Set up MinGW for x86 | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x86' | |
uses: csukuangfj/[email protected] | |
with: | |
platform: ${{ matrix.arch }} | |
version: '12.2.0' | |
- name: Show gcc | |
if: matrix.os == 'windows-latest' | |
run: | | |
gcc --version | |
- name: Test adding punctuation | |
if: matrix.os != 'windows-latest' | |
shell: bash | |
run: | | |
cd go-api-examples/add-punctuation/ | |
./run.sh | |
- name: Test non-streaming speaker diarization | |
if: matrix.os != 'windows-latest' | |
shell: bash | |
run: | | |
cd go-api-examples/non-streaming-speaker-diarization/ | |
./run.sh | |
- name: Test non-streaming speaker diarization | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x64' | |
shell: bash | |
run: | | |
cd go-api-examples/non-streaming-speaker-diarization/ | |
go mod tidy | |
cat go.mod | |
go build | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/* | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/x86_64-pc-windows-gnu/*.dll . | |
./run.sh | |
- name: Test non-streaming speaker diarization | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x86' | |
shell: bash | |
run: | | |
cd go-api-examples/non-streaming-speaker-diarization/ | |
go env GOARCH | |
go env -w GOARCH=386 | |
go env -w CGO_ENABLED=1 | |
go mod tidy | |
cat go.mod | |
go build | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/* | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/i686-pc-windows-gnu/*.dll . | |
./run.sh | |
- name: Test streaming HLG decoding (Linux/macOS) | |
if: matrix.os != 'windows-latest' | |
shell: bash | |
run: | | |
cd go-api-examples/streaming-hlg-decoding/ | |
./run.sh | |
- name: Test speaker identification (Linux/macOS) | |
if: matrix.os != 'windows-latest' | |
shell: bash | |
run: | | |
cd go-api-examples/speaker-identification | |
./run.sh | |
- name: Test speaker identification (Win64) | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x64' | |
shell: bash | |
run: | | |
cd go-api-examples/speaker-identification | |
go mod tidy | |
cat go.mod | |
go build | |
curl -SL -O https://github.com/k2-fsa/sherpa-onnx/releases/download/speaker-recongition-models/3dspeaker_speech_campplus_sv_zh-cn_16k-common.onnx | |
git clone https://github.com/csukuangfj/sr-data | |
ls -lh | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/* | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/x86_64-pc-windows-gnu/*.dll . | |
ls -lh | |
go mod tidy | |
go build | |
go run ./main.go | |
- name: Test speaker identification (Win32) | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x86' | |
shell: bash | |
run: | | |
cd go-api-examples/speaker-identification | |
go mod tidy | |
cat go.mod | |
ls -lh | |
go env GOARCH | |
go env | |
echo "------------------------------" | |
go env -w GOARCH=386 | |
go env -w CGO_ENABLED=1 | |
go env | |
go clean | |
go build | |
echo $PWD | |
curl -SL -O https://github.com/k2-fsa/sherpa-onnx/releases/download/speaker-recongition-models/3dspeaker_speech_campplus_sv_zh-cn_16k-common.onnx | |
git clone https://github.com/csukuangfj/sr-data | |
ls -lh | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/* | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/i686-pc-windows-gnu/*.dll . | |
ls -lh | |
go mod tidy | |
go build | |
go run ./main.go | |
rm -rf sr-data | |
rm -rf *.onnx | |
- name: Test non-streaming TTS (Linux/macOS) | |
if: matrix.os != 'windows-latest' | |
shell: bash | |
run: | | |
mkdir tts-waves | |
cd go-api-examples/non-streaming-tts | |
ls -lh | |
go mod tidy | |
cat go.mod | |
go build | |
ls -lh | |
echo "Test vits-ljs" | |
./run-vits-ljs.sh | |
rm -rf vits-ljs | |
echo "Test vits-vctk" | |
./run-vits-vctk.sh | |
rm -rf vits-vctk | |
echo "Test vits-icefall-zh-aishell3" | |
./run-vits-zh-aishell3.sh | |
rm -rf vits-icefall-zh-aishell3 | |
echo "Test vits-piper-en_US-lessac-medium" | |
./run-vits-piper-en_US-lessac-medium.sh | |
rm -rf vits-piper-en_US-lessac-medium | |
ls -lh *.wav | |
cp *.wav ../../tts-waves/ | |
- name: Test non-streaming TTS (Win64) | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x64' | |
shell: bash | |
run: | | |
mkdir tts-waves | |
cd go-api-examples/non-streaming-tts | |
ls -lh | |
go mod tidy | |
cat go.mod | |
go build | |
ls -lh | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/* | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/x86_64-pc-windows-gnu/*.dll . | |
ls -lh | |
echo "Test vits-ljs" | |
./run-vits-ljs.sh | |
rm -rf vits-ljs | |
echo "Test vits-vctk" | |
./run-vits-vctk.sh | |
rm -rf vits-vctk | |
echo "Test vits-zh-aishell3" | |
./run-vits-zh-aishell3.sh | |
rm -rf vits-icefall-zh-aishell3 | |
echo "Test vits-piper-en_US-lessac-medium" | |
./run-vits-piper-en_US-lessac-medium.sh | |
rm -rf vits-piper-en_US-lessac-medium | |
ls -lh *.wav | |
cp *.wav ../../tts-waves/ | |
- name: Test non-streaming TTS (Win32) | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x86' | |
shell: bash | |
run: | | |
mkdir tts-waves | |
cd go-api-examples/non-streaming-tts | |
ls -lh | |
go mod tidy | |
cat go.mod | |
ls -lh | |
go env GOARCH | |
go env | |
echo "------------------------------" | |
go env -w GOARCH=386 | |
go env -w CGO_ENABLED=1 | |
go env | |
go clean | |
go build | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/i686-pc-windows-gnu/*.dll . | |
ls -lh | |
echo "Test vits-ljs" | |
./run-vits-ljs.sh | |
rm -rf vits-ljs | |
echo "Test vits-vctk" | |
./run-vits-vctk.sh | |
rm -rf vits-vctk | |
echo "Test vits-zh-aishell3" | |
./run-vits-zh-aishell3.sh | |
rm -rf vits-zh-aishell3 | |
echo "Test vits-piper-en_US-lessac-medium" | |
./run-vits-piper-en_US-lessac-medium.sh | |
rm -rf vits-piper-en_US-lessac-medium | |
ls -lh *.wav | |
cp *.wav ../../tts-waves/ | |
- name: Test non-streaming decoding files (Linux/macOS) | |
if: matrix.os != 'windows-latest' | |
shell: bash | |
run: | | |
cd go-api-examples/non-streaming-decode-files | |
ls -lh | |
go mod tidy | |
cat go.mod | |
go build | |
ls -lh | |
echo "Test transducer" | |
./run-transducer.sh | |
rm -rf sherpa-onnx-zipformer-en-2023-06-26 | |
echo "Test paraformer" | |
./run-paraformer.sh | |
rm -rf sherpa-onnx-paraformer-zh-2023-09-14 | |
echo "Test NeMo CTC" | |
./run-nemo-ctc.sh | |
rm -rf sherpa-onnx-nemo-ctc-en-conformer-medium | |
echo "Test Whisper tiny.en" | |
./run-whisper.sh | |
rm -rf sherpa-onnx-whisper-tiny.en | |
echo "Test Tdnn yesno" | |
./run-tdnn-yesno.sh | |
rm -rf sherpa-onnx-tdnn-yesno | |
- name: Test non-streaming decoding files (Win64) | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x64' | |
shell: bash | |
run: | | |
cd go-api-examples/non-streaming-decode-files | |
ls -lh | |
go mod tidy | |
cat go.mod | |
go build | |
ls -lh | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/* | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/x86_64-pc-windows-gnu/*.dll . | |
ls -lh | |
echo "Test transducer" | |
./run-transducer.sh | |
rm -rf sherpa-onnx-zipformer-en-2023-06-26 | |
echo "Test paraformer" | |
./run-paraformer.sh | |
rm -rf sherpa-onnx-paraformer-zh-2023-09-14 | |
echo "Test NeMo CTC" | |
./run-nemo-ctc.sh | |
rm -rf sherpa-onnx-nemo-ctc-en-conformer-medium | |
echo "Test Whisper tiny.en" | |
./run-whisper.sh | |
rm -rf sherpa-onnx-whisper-tiny.en | |
echo "Test Tdnn yesno" | |
./run-tdnn-yesno.sh | |
rm -rf sherpa-onnx-tdnn-yesno | |
- name: Test non-streaming decoding files (Win32) | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x86' | |
shell: bash | |
run: | | |
cd go-api-examples/non-streaming-decode-files | |
ls -lh | |
go mod tidy | |
cat go.mod | |
ls -lh | |
go env GOARCH | |
go env | |
echo "------------------------------" | |
go env -w GOARCH=386 | |
go env -w CGO_ENABLED=1 | |
go env | |
go clean | |
go build | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/i686-pc-windows-gnu/*.dll . | |
ls -lh | |
echo "Test transducer" | |
./run-transducer.sh | |
rm -rf sherpa-onnx-zipformer-en-2023-06-26 | |
echo "Test paraformer" | |
./run-paraformer.sh | |
rm -rf sherpa-onnx-paraformer-zh-2023-09-14 | |
echo "Test NeMo CTC" | |
./run-nemo-ctc.sh | |
rm -rf sherpa-onnx-nemo-ctc-en-conformer-medium | |
echo "Test Whisper tiny.en" | |
./run-whisper.sh | |
rm -rf sherpa-onnx-whisper-tiny.en | |
echo "Test Tdnn yesno" | |
./run-tdnn-yesno.sh | |
rm -rf sherpa-onnx-tdnn-yesno | |
- name: Test streaming decoding files (Linux/macOS) | |
if: matrix.os != 'windows-latest' | |
shell: bash | |
run: | | |
cd go-api-examples/streaming-decode-files | |
ls -lh | |
go mod tidy | |
cat go.mod | |
go build | |
ls -lh | |
echo "Test transducer" | |
./run-transducer.sh | |
rm -rf sherpa-onnx-streaming-zipformer-en-2023-06-26 | |
echo "Test paraformer" | |
./run-paraformer.sh | |
rm -rf sherpa-onnx-streaming-paraformer-bilingual-zh-en | |
- name: Test streaming decoding files (Win64) | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x64' | |
shell: bash | |
run: | | |
cd go-api-examples/streaming-decode-files | |
ls -lh | |
go mod tidy | |
cat go.mod | |
go build | |
ls -lh | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/* | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/x86_64-pc-windows-gnu/*.dll . | |
ls -lh | |
echo "Test transducer" | |
./run-transducer.sh | |
rm -rf sherpa-onnx-streaming-zipformer-en-2023-06-26 | |
echo "Test paraformer" | |
./run-paraformer.sh | |
rm -rf sherpa-onnx-streaming-paraformer-bilingual-zh-en | |
- name: Test streaming decoding files (Win32) | |
if: matrix.os == 'windows-latest' && matrix.arch == 'x86' | |
shell: bash | |
run: | | |
cd go-api-examples/streaming-decode-files | |
ls -lh | |
go mod tidy | |
cat go.mod | |
ls -lh | |
go env GOARCH | |
go env | |
echo "------------------------------" | |
go env -w GOARCH=386 | |
go env -w CGO_ENABLED=1 | |
go env | |
go clean | |
go build | |
echo $PWD | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/ | |
ls -lh /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/* | |
cp -v /C/Users/runneradmin/go/pkg/mod/github.com/k2-fsa/sherpa-onnx-go-windows*/lib/i686-pc-windows-gnu/*.dll . | |
ls -lh | |
echo "Test transducer" | |
./run-transducer.sh | |
rm -rf sherpa-onnx-streaming-zipformer-en-2023-06-26 | |
echo "Test paraformer" | |
./run-paraformer.sh | |
rm -rf sherpa-onnx-streaming-paraformer-bilingual-zh-en | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: tts-waves-${{ matrix.os }}-${{ matrix.arch }} | |
path: tts-waves |