Release v1.24.4 (#1246) #1
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: build-wheels-cpu-macos | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
concurrency: | |
group: build-wheels-cpu-macos-${{ 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@v2 | |
with: | |
fetch-depth: 0 | |
- name: Generating build matrix | |
id: set-matrix | |
run: | | |
# outputting for debugging purposes | |
python ./scripts/github_actions/generate_build_matrix.py --for-macos | |
MATRIX=$(python ./scripts/github_actions/generate_build_matrix.py --for-macos) | |
echo "::set-output name=matrix::${MATRIX}" | |
build_wheels_macos_cpu: | |
needs: generate_build_matrix | |
name: ${{ matrix.torch }} ${{ matrix.python-version }} | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
${{ fromJson(needs.generate_build_matrix.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
# see https://cibuildwheel.readthedocs.io/en/stable/changelog/ | |
# for a list of versions | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_BEFORE_BUILD: pip install torch==${{ matrix.torch}} cmake numpy | |
CIBW_BUILD: ${{ matrix.python-version }}-* | |
CIBW_REPAIR_WHEEL_COMMAND_MACOS: "" | |
CIBW_BUILD_VERBOSITY: 3 | |
- name: Display wheels | |
shell: bash | |
run: | | |
ls -lh ./wheelhouse/ | |
- name: Upload Wheel | |
uses: actions/upload-artifact@v2 | |
with: | |
name: torch-${{ matrix.torch }}-python-${{ matrix.python-version }}-macos-latest-cpu | |
path: wheelhouse/*.whl | |
# https://huggingface.co/docs/hub/spaces-github-actions | |
- name: Publish to huggingface | |
env: | |
HF_TOKEN: ${{ secrets.HF_TOKEN }} | |
uses: nick-fields/retry@v2 | |
with: | |
max_attempts: 20 | |
timeout_seconds: 200 | |
shell: bash | |
command: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Fangjun Kuang" | |
rm -rf huggingface | |
export GIT_LFS_SKIP_SMUDGE=1 | |
git clone https://huggingface.co/csukuangfj/k2 huggingface | |
cd huggingface | |
git pull | |
mkdir -p macos | |
cp -v ../wheelhouse/*.whl ./macos | |
git status | |
git lfs track "*.whl" | |
git add . | |
git commit -m "upload macos wheel for torch ${{ matrix.torch }} python ${{ matrix.python-version }}" | |
git push https://csukuangfj:[email protected]/csukuangfj/k2 main |