fix str2bool (#1792) #709
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: yesno | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: yesno-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
generate_build_matrix: | |
if: github.repository_owner == 'csukuangfj' || github.repository_owner == 'k2-fsa' | |
# see https://github.com/pytorch/pytorch/pull/50633 | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Generating build matrix | |
id: set-matrix | |
run: | | |
# outputting for debugging purposes | |
python ./.github/scripts/docker/generate_build_matrix.py | |
MATRIX=$(python ./.github/scripts/docker/generate_build_matrix.py) | |
echo "::set-output name=matrix::${MATRIX}" | |
yesno: | |
needs: generate_build_matrix | |
name: py${{ matrix.python-version }} torch${{ matrix.torch-version }} v${{ matrix.version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
${{ fromJson(needs.generate_build_matrix.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run the yesno recipe | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: ghcr.io/${{ github.repository_owner }}/icefall:cpu-py${{ matrix.python-version }}-torch${{ matrix.torch-version }}-v${{ matrix.version }} | |
options: | | |
--volume ${{ github.workspace }}/:/icefall | |
shell: bash | |
run: | | |
export PYTHONPATH=/icefall:$PYTHONPATH | |
cd /icefall | |
git config --global --add safe.directory /icefall | |
python3 -m torch.utils.collect_env | |
python3 -m k2.version | |
pip list | |
.github/scripts/yesno/ASR/run.sh |