Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Jan 20, 2025
1 parent 586a6b0 commit efaf056
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions examples/github-with-qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit efaf056

Please sign in to comment.