Skip to content

Commit

Permalink
Support manylinux_2014_aarch64 wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Durant committed Oct 25, 2022
1 parent 91ac6c0 commit d3d0337
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -38,6 +38,9 @@ jobs:
- os: ubuntu-latest
bitness: 32
platform_id: manylinux_i686
- os: ubuntu-latest
bitness: 64
platform_id: manylinux_aarch64
- os: macos-latest
bitness: 64
platform_id: macosx_x86_64
Expand All @@ -62,15 +65,24 @@ jobs:
- os: macos-latest
bitness: 32
env:
CIBW_ARCHS_LINUX: auto aarch64
CIBW_ARCHS_MACOS: x86_64 universal2
CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }}
CIBW_TEST_REQUIRES: pytest==6.* hypothesis==6.*
CIBW_TEST_COMMAND: "bash {project}/tools/test_wheels.sh {project}"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014

steps:
- uses: actions/checkout@v2

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v2
with:
platforms: all

- name: Build wheels
uses: pypa/cibuildwheel@v2.3.1

Expand Down

0 comments on commit d3d0337

Please sign in to comment.