128 lines
3.6 KiB
YAML
128 lines
3.6 KiB
YAML
name: test-pip-install
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- test-pip-install
|
|
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 23:50 UTC time every day
|
|
- cron: "50 23 * * *"
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: test-pip-install-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test_pip_install:
|
|
runs-on: ${{ matrix.os }}
|
|
name: ${{ matrix.os }} ${{ matrix.python-version }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# See https://github.com/actions/runner-images
|
|
include:
|
|
- os: ubuntu-22.04
|
|
python-version: "3.7"
|
|
- os: ubuntu-22.04
|
|
python-version: "3.8"
|
|
- os: ubuntu-22.04
|
|
python-version: "3.9"
|
|
- os: ubuntu-22.04
|
|
python-version: "3.10"
|
|
- os: ubuntu-22.04
|
|
python-version: "3.11"
|
|
- os: ubuntu-22.04
|
|
python-version: "3.12"
|
|
- os: ubuntu-22.04
|
|
python-version: "3.13"
|
|
|
|
- os: macos-13
|
|
python-version: "3.8"
|
|
|
|
- os: macos-13
|
|
python-version: "3.9"
|
|
- os: macos-13
|
|
python-version: "3.10"
|
|
- os: macos-13
|
|
python-version: "3.11"
|
|
|
|
- os: macos-14
|
|
python-version: "3.12"
|
|
- os: macos-14
|
|
python-version: "3.13"
|
|
|
|
- os: windows-2022
|
|
python-version: "3.7"
|
|
- os: windows-2022
|
|
python-version: "3.8"
|
|
- os: windows-2022
|
|
python-version: "3.9"
|
|
|
|
- os: windows-2022
|
|
python-version: "3.10"
|
|
- os: windows-2022
|
|
python-version: "3.11"
|
|
- os: windows-2022
|
|
python-version: "3.12"
|
|
- os: windows-2022
|
|
python-version: "3.13"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install sherpa-onnx
|
|
shell: bash
|
|
run: |
|
|
pip install --verbose sherpa-onnx
|
|
# python3 -m pip install --verbose .
|
|
|
|
- name: Test sherpa-onnx
|
|
shell: bash
|
|
run: |
|
|
python3 -c "import sherpa_onnx; print(sherpa_onnx.__file__)"
|
|
python3 -c "import sherpa_onnx; print(sherpa_onnx.__version__)"
|
|
|
|
p=$(python3 -c "from pathlib import Path; import sys; print(Path(sys.executable).parent)")
|
|
echo $p
|
|
ls -lh $p
|
|
# ls -lh $p/bin
|
|
# export PATH=$p/bin:$PATH
|
|
|
|
# For windows
|
|
export PATH=/c/hostedtoolcache/windows/Python/3.7.9/x64/bin:$PATH
|
|
export PATH=/c/hostedtoolcache/windows/Python/3.8.10/x64/bin:$PATH
|
|
export PATH=/c/hostedtoolcache/windows/Python/3.9.13/x64/bin:$PATH
|
|
export PATH=/c/hostedtoolcache/windows/Python/3.10.11/x64/bin:$PATH
|
|
export PATH=/c/hostedtoolcache/windows/Python/3.11.9/x64/bin:$PATH
|
|
export PATH=/c/hostedtoolcache/windows/Python/3.12.10/x64/bin:$PATH
|
|
export PATH=/c/hostedtoolcache/windows/Python/3.13.3/x64/bin:$PATH
|
|
|
|
sherpa-onnx --help
|
|
sherpa-onnx-keyword-spotter --help
|
|
sherpa-onnx-offline --help
|
|
sherpa-onnx-offline-tts --help
|
|
|
|
sherpa-onnx-microphone --help
|
|
sherpa-onnx-microphone-offline --help
|
|
|
|
sherpa-onnx-offline-websocket-server --help
|
|
|
|
sherpa-onnx-online-websocket-server --help
|
|
sherpa-onnx-online-websocket-client --help
|