From efaf0564e9000bb5f444c7dfadc474b8926165e1 Mon Sep 17 00:00:00 2001 From: mayeut Date: Mon, 20 Jan 2025 20:53:19 +0100 Subject: [PATCH] address review comments --- examples/github-with-qemu.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/github-with-qemu.yml b/examples/github-with-qemu.yml index a33c424d5..ed4836a9c 100644 --- a/examples/github-with-qemu.yml +++ b/examples/github-with-qemu.yml @@ -23,8 +23,12 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v2.22.0 env: - # configure cibuildwheel to build native archs ('auto'), and some - # emulated ones + # configure cibuildwheel on Linux to build native archs ('auto'), + # and to split the remaining architectures between the x86_64 and + # ARM runners + # armv7l can be built without QEMU on GitHub Actions ARM runners but that's + # not the case on all ARM64 hardware hence 'auto armv7l' for native archs + # on the GHA ARM64 runner CIBW_ARCHS_LINUX: ${{ runner.arch == 'X64' && 'auto ppc64le s390x' || 'auto armv7l' }} - uses: actions/upload-artifact@v4