-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
address review comments
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,12 @@ jobs: | |
- name: Build wheels | ||
uses: pypa/[email protected] | ||
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 | ||
|