mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-10 02:22:17 +00:00
80 lines
2.0 KiB
YAML
80 lines
2.0 KiB
YAML
name: run-multi-zh-hans
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: run-multi-zh-hans-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
multi-zh-hans:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
python-version: [3.8]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: 'pip'
|
|
cache-dependency-path: '**/requirements-ci.txt'
|
|
|
|
- name: Install Python dependencies
|
|
run: |
|
|
grep -v '^#' ./requirements-ci.txt | xargs -n 1 -L 1 pip install
|
|
pip uninstall -y protobuf
|
|
pip install --no-binary protobuf protobuf==3.20.*
|
|
|
|
- name: Cache kaldifeat
|
|
id: my-cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/tmp/kaldifeat
|
|
key: cache-tmp-${{ matrix.python-version }}-2023-05-22
|
|
|
|
- name: Install kaldifeat
|
|
if: steps.my-cache.outputs.cache-hit != 'true'
|
|
shell: bash
|
|
run: |
|
|
.github/scripts/install-kaldifeat.sh
|
|
|
|
- name: export-model
|
|
shell: bash
|
|
env:
|
|
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
|
run: |
|
|
sudo apt-get -qq install git-lfs tree
|
|
export PYTHONPATH=$PWD:$PYTHONPATH
|
|
export PYTHONPATH=~/tmp/kaldifeat/kaldifeat/python:$PYTHONPATH
|
|
export PYTHONPATH=~/tmp/kaldifeat/build/lib:$PYTHONPATH
|
|
|
|
.github/scripts/multi-zh-hans.sh
|
|
ls -lh
|
|
|
|
- name: upload model to https://github.com/k2-fsa/sherpa-onnx
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
file_glob: true
|
|
file: ./*.tar.bz2
|
|
overwrite: true
|
|
repo_name: k2-fsa/sherpa-onnx
|
|
repo_token: ${{ secrets.UPLOAD_GH_SHERPA_ONNX_TOKEN }}
|
|
tag: asr-models
|