Build aarch64 wheels (#618)

This commit is contained in:
J. Nick Koston 2023-11-08 15:44:59 -06:00 committed by GitHub
parent 6edb45e732
commit 9aa453ac86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -18,12 +18,19 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1
with:
platforms: aarch64
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_SKIP: cp36-* cp37-* cp38-* pp*
CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc
CIBW_BUILD_VERBOSITY: 3
CIBW_ARCHS_LINUX: auto aarch64
REQUIRE_CYTHON: 1
- uses: actions/upload-artifact@v3