-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable aarch64 (arm) builds in cibuildwheel action
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-22.04] #, macos-11] disable macos for now | ||
os: [ubuntu-22.04] #, macos-11] - disable macos, as it's not working for a moment | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -36,8 +36,8 @@ jobs: | |
uses: pypa/[email protected] | ||
env: | ||
# Configure cibuildwheel to build native archs, and some emulated ones | ||
CIBW_ARCHS_LINUX: x86_64 aarch64 | ||
CIBW_ARCHS_MACOS: x86_64 arm64 | ||
CIBW_ARCHS_LINUX: x86_64 # aarch64 - disable ARM, as it's not working for a moment | ||
#CIBW_ARCHS_MACOS: x86_64 arm64 - macos is disabled for a moment | ||
CIBW_BUILD_VERBOSITY: 3 # Increase verbosity to see what's going on | ||
CIBW_REPAIR_WHEEL_COMMAND_LINUX: > # Print additional info from auditwheel | ||
auditwheel show {wheel} && auditwheel repair -w {dest_dir} {wheel} | ||
|