From 0f9632c4e786bf04981697d23f1e178bb8ddf3f8 Mon Sep 17 00:00:00 2001 From: Aaron Durant Date: Mon, 24 Oct 2022 13:54:52 +0100 Subject: [PATCH] Support manylinux_2014_aarch64 wheels --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ddd1d70..5e7a006 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,6 +38,9 @@ jobs: - os: ubuntu-latest bitness: 32 platform_id: manylinux_i686 + - os: ubuntu-latest + bitness: 64 + platform_id: manylinux_aarch - os: macos-latest bitness: 64 platform_id: macosx_x86_64 @@ -62,12 +65,15 @@ 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