437 lines
14 KiB
YAML
437 lines
14 KiB
YAML
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-latest
|
|
arch: amd64
|
|
- 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/setup-mingw@v2.2.1
|
|
with:
|
|
platform: ${{ matrix.arch }}
|
|
|
|
- name: Set up MinGW for x86
|
|
if: matrix.os == 'windows-latest' && matrix.arch == 'x86'
|
|
uses: csukuangfj/setup-mingw@v2.2.1
|
|
with:
|
|
platform: ${{ matrix.arch }}
|
|
version: '12.2.0'
|
|
|
|
- name: Show gcc
|
|
if: matrix.os == 'windows-latest'
|
|
run: |
|
|
gcc --version
|
|
|
|
- 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
|
|
|
|
git lfs install
|
|
|
|
echo "Test vits-ljs"
|
|
git clone https://huggingface.co/csukuangfj/vits-ljs
|
|
./run-vits-ljs.sh
|
|
rm -rf vits-ljs
|
|
|
|
echo "Test vits-vctk"
|
|
git clone https://huggingface.co/csukuangfj/vits-vctk
|
|
./run-vits-vctk.sh
|
|
rm -rf vits-vctk
|
|
|
|
echo "Test vits-zh-aishell3"
|
|
git clone https://huggingface.co/csukuangfj/vits-zh-aishell3
|
|
./run-vits-zh-aishell3.sh
|
|
rm -rf vits-zh-aishell3
|
|
|
|
echo "Test vits-piper-en_US-lessac-medium"
|
|
git clone https://huggingface.co/csukuangfj/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
|
|
|
|
git lfs install
|
|
|
|
echo "Test vits-ljs"
|
|
git clone https://huggingface.co/csukuangfj/vits-ljs
|
|
./run-vits-ljs.sh
|
|
rm -rf vits-ljs
|
|
|
|
echo "Test vits-vctk"
|
|
git clone https://huggingface.co/csukuangfj/vits-vctk
|
|
./run-vits-vctk.sh
|
|
rm -rf vits-vctk
|
|
|
|
echo "Test vits-zh-aishell3"
|
|
git clone https://huggingface.co/csukuangfj/vits-zh-aishell3
|
|
./run-vits-zh-aishell3.sh
|
|
rm -rf vits-zh-aishell3
|
|
|
|
echo "Test vits-piper-en_US-lessac-medium"
|
|
git clone https://huggingface.co/csukuangfj/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
|
|
|
|
git lfs install
|
|
|
|
echo "Test vits-ljs"
|
|
git clone https://huggingface.co/csukuangfj/vits-ljs
|
|
./run-vits-ljs.sh
|
|
rm -rf vits-ljs
|
|
|
|
echo "Test vits-vctk"
|
|
git clone https://huggingface.co/csukuangfj/vits-vctk
|
|
./run-vits-vctk.sh
|
|
rm -rf vits-vctk
|
|
|
|
echo "Test vits-zh-aishell3"
|
|
git clone https://huggingface.co/csukuangfj/vits-zh-aishell3
|
|
./run-vits-zh-aishell3.sh
|
|
rm -rf vits-zh-aishell3
|
|
|
|
echo "Test vits-piper-en_US-lessac-medium"
|
|
git clone https://huggingface.co/csukuangfj/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
|
|
|
|
git lfs install
|
|
|
|
echo "Test transducer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-zipformer-en-2023-06-26
|
|
./run-transducer.sh
|
|
rm -rf sherpa-onnx-zipformer-en-2023-06-26
|
|
|
|
echo "Test paraformer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-paraformer-zh-2023-03-28
|
|
./run-paraformer.sh
|
|
rm -rf sherpa-onnx-paraformer-zh-2023-03-28
|
|
|
|
echo "Test NeMo CTC"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-nemo-ctc-en-conformer-medium
|
|
./run-nemo-ctc.sh
|
|
rm -rf sherpa-onnx-nemo-ctc-en-conformer-medium
|
|
|
|
echo "Test Whisper tiny.en"
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-whisper-tiny.en
|
|
cd sherpa-onnx-whisper-tiny.en
|
|
git lfs pull --include "*.onnx"
|
|
cd ..
|
|
./run-whisper.sh
|
|
rm -rf sherpa-onnx-whisper-tiny.en
|
|
|
|
echo "Test Tdnn yesno"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-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
|
|
|
|
git lfs install
|
|
|
|
echo "Test transducer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-zipformer-en-2023-06-26
|
|
./run-transducer.sh
|
|
rm -rf sherpa-onnx-zipformer-en-2023-06-26
|
|
|
|
echo "Test paraformer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-paraformer-zh-2023-03-28
|
|
./run-paraformer.sh
|
|
rm -rf sherpa-onnx-paraformer-zh-2023-03-28
|
|
|
|
echo "Test NeMo CTC"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-nemo-ctc-en-conformer-medium
|
|
./run-nemo-ctc.sh
|
|
rm -rf sherpa-onnx-nemo-ctc-en-conformer-medium
|
|
|
|
echo "Test Whisper tiny.en"
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-whisper-tiny.en
|
|
cd sherpa-onnx-whisper-tiny.en
|
|
git lfs pull --include "*.onnx"
|
|
cd ..
|
|
./run-whisper.sh
|
|
rm -rf sherpa-onnx-whisper-tiny.en
|
|
|
|
echo "Test Tdnn yesno"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-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
|
|
|
|
git lfs install
|
|
|
|
echo "Test transducer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-zipformer-en-2023-06-26
|
|
./run-transducer.sh
|
|
rm -rf sherpa-onnx-zipformer-en-2023-06-26
|
|
|
|
echo "Test paraformer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-paraformer-zh-2023-03-28
|
|
./run-paraformer.sh
|
|
rm -rf sherpa-onnx-paraformer-zh-2023-03-28
|
|
|
|
echo "Test NeMo CTC"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-nemo-ctc-en-conformer-medium
|
|
./run-nemo-ctc.sh
|
|
rm -rf sherpa-onnx-nemo-ctc-en-conformer-medium
|
|
|
|
echo "Test Whisper tiny.en"
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-whisper-tiny.en
|
|
cd sherpa-onnx-whisper-tiny.en
|
|
git lfs pull --include "*.onnx"
|
|
cd ..
|
|
./run-whisper.sh
|
|
rm -rf sherpa-onnx-whisper-tiny.en
|
|
|
|
echo "Test Tdnn yesno"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-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
|
|
|
|
git lfs install
|
|
|
|
echo "Test transducer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-streaming-zipformer-en-2023-06-26
|
|
./run-transducer.sh
|
|
rm -rf sherpa-onnx-streaming-zipformer-en-2023-06-26
|
|
|
|
echo "Test paraformer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-streaming-paraformer-bilingual-zh-en
|
|
./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
|
|
|
|
git lfs install
|
|
|
|
echo "Test transducer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-streaming-zipformer-en-2023-06-26
|
|
./run-transducer.sh
|
|
rm -rf sherpa-onnx-streaming-zipformer-en-2023-06-26
|
|
|
|
echo "Test paraformer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-streaming-paraformer-bilingual-zh-en
|
|
./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
|
|
|
|
git lfs install
|
|
|
|
echo "Test transducer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-streaming-zipformer-en-2023-06-26
|
|
./run-transducer.sh
|
|
rm -rf sherpa-onnx-streaming-zipformer-en-2023-06-26
|
|
|
|
echo "Test paraformer"
|
|
git clone https://huggingface.co/csukuangfj/sherpa-onnx-streaming-paraformer-bilingual-zh-en
|
|
./run-paraformer.sh
|
|
rm -rf sherpa-onnx-streaming-paraformer-bilingual-zh-en
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: tts-waves
|
|
path: tts-waves
|