Skip to content

Commit

Permalink
Disable aarch64 (arm) builds in cibuildwheel action
Browse files Browse the repository at this point in the history
  • Loading branch information
mwydmuch committed Oct 9, 2023
1 parent 6123c63 commit e709c06
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}
Expand Down

0 comments on commit e709c06

Please sign in to comment.