We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 586a6b0 commit efaf056Copy full SHA for efaf056
examples/github-with-qemu.yml
@@ -23,8 +23,12 @@ jobs:
23
- name: Build wheels
24
uses: pypa/[email protected]
25
env:
26
- # configure cibuildwheel to build native archs ('auto'), and some
27
- # emulated ones
+ # configure cibuildwheel on Linux to build native archs ('auto'),
+ # and to split the remaining architectures between the x86_64 and
28
+ # ARM runners
29
+ # armv7l can be built without QEMU on GitHub Actions ARM runners but that's
30
+ # not the case on all ARM64 hardware hence 'auto armv7l' for native archs
31
+ # on the GHA ARM64 runner
32
CIBW_ARCHS_LINUX: ${{ runner.arch == 'X64' && 'auto ppc64le s390x' || 'auto armv7l' }}
33
34
- uses: actions/upload-artifact@v4
0 commit comments