Rename aarch64 job

This commit is contained in:
Roman Mogylatov 2021-01-26 20:00:10 -05:00
parent c15a5889fe
commit c48559669a

View File

@ -73,12 +73,9 @@ jobs:
path: ./wheelhouse/*.whl path: ./wheelhouse/*.whl
build-wheels-linux-custom-archs: build-wheels-linux-custom-archs:
name: Build wheels Linux custom archs name: Build wheels (linux-aarch64)
needs: [tests, linters] needs: [tests, linters]
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
arch: [aarch64]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up QEMU - name: Set up QEMU
@ -87,7 +84,7 @@ jobs:
with: with:
python-version: 3.9 python-version: 3.9
- run: pip install cibuildwheel==1.8.0 - run: pip install cibuildwheel==1.8.0
- run: cibuildwheel --archs ${{ matrix.arch }} --output-dir wheelhouse - run: cibuildwheel --archs aarch64 --output-dir wheelhouse
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2
with: with:
path: ./wheelhouse/*.whl path: ./wheelhouse/*.whl