From 089565088a8abc56385f5de7777663bdd64b2f99 Mon Sep 17 00:00:00 2001 From: Matthias Wittgen Date: Fri, 6 Sep 2024 13:55:32 -0700 Subject: [PATCH] Enable linux_aarch64 --- .github/workflows/build.yaml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cfdf989..dbaff6a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -110,17 +110,15 @@ jobs: env: CIBW_BUILD: "cp3{8,9,10,11,12,13}-{manylinux_x86_64,manylinux_aarch64,macosx_arm64,macosx_x86_64}" CIBW_ARCHS_MACOS: "x86_64 arm64" - # use line below to enable aarch64 builds - # CIBW_ARCHS_LINUX: "auto aarch64" + CIBW_ARCHS_LINUX: "auto aarch64" CIBW_ARCHS_LINUX: "auto" steps: - # uncomment when building aarch64 - # - name: Set up QEMU - # uses: docker/setup-qemu-action@v2 - # if: runner.os == 'Linux' - # with: - # platforms: arm64 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + if: runner.os == 'Linux' + with: + platforms: arm64 - uses: actions/checkout@v4 with: