Skip to content

Commit

Permalink
ci: build aarch64 wheels on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed May 11, 2021
1 parent 4f8784e commit 73538d7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1
with:
platforms: all
- name: Build wheels
uses: joerick/[email protected]
env:
CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-*"
CIBW_ARCHS_LINUX: auto aarch64
6 changes: 6 additions & 0 deletions .github/workflows/release-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,16 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1
with:
platforms: all
- name: Build wheels
uses: joerick/[email protected]
env:
CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-*"
CIBW_ARCHS_LINUX: auto aarch64
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
Expand Down

0 comments on commit 73538d7

Please sign in to comment.