Add Silero VAD version 4 #232
Workflow file for this run
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: swift-api-test | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/swift-api-test.yaml' | |
- '.github/scripts/swift-api-test.sh' | |
- 'CMakeLists.txt' | |
- 'cmake/**' | |
- 'sherpa-ncnn/csrc/*' | |
- 'sherpa-ncnn/swift-api-examples/*' | |
- 'build-swift-macos.sh' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/swift-api-test.yaml' | |
- '.github/scripts/swift-api-test.sh' | |
- 'CMakeLists.txt' | |
- 'cmake/**' | |
- 'sherpa-ncnn/csrc/*' | |
- 'sherpa-ncnn/swift-api-examples/*' | |
- 'build-swift-macos.sh' | |
workflow_dispatch: | |
concurrency: | |
group: swift-api-test-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
swift-api-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: ccache | |
uses: hendrikmuhs/ccache-action@v1.2 | |
with: | |
key: ${{ matrix.os }}-swift | |
- name: Run swift-api-test | |
shell: bash | |
run: | | |
export CMAKE_CXX_COMPILER_LAUNCHER=ccache | |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | |
.github/scripts/swift-api-test.sh |