Skip to content

Commit

Permalink
[CI] Disable CIBW ARM64 for stable ABI packages
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Dec 2, 2024
1 parent 0583f3c commit 1412099
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
output-dir: dist
env:
CIBW_ARCHS_LINUX: 'x86_64 i686'
CIBW_ARCHS_WINDOWS: 'AMD64 x86 ARM64'
CIBW_ARCHS_WINDOWS: 'AMD64 x86' # No ARM64: https://gitlab.kitware.com/cmake/cmake/-/issues/26493
CIBW_ARCHS_MACOS: 'x86_64 universal2 arm64'
CIBW_BUILD: 'cp311-* pp39-*'
CIBW_ENVIRONMENT: 'PIP_FIND_LINKS=${{ github.workspace }}/dist PY_BUILD_CMAKE_VERBOSE=1'
Expand Down
2 changes: 2 additions & 0 deletions examples/nanobind-project/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,5 @@ build-verbosity = 1
environment = { PY_BUILD_CMAKE_VERBOSE="1" }
test-command = "pytest {package}/tests"
test-extras = ["test"]
[tool.cibuildwheel.windows]
archs = ["AMD64", "x86"] # No ARM64: https://gitlab.kitware.com/cmake/cmake/-/issues/26493
2 changes: 2 additions & 0 deletions examples/swig-project/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,5 @@ build-verbosity = 1
environment = { PY_BUILD_CMAKE_VERBOSE = "1" }
test-command = "pytest {package}/tests"
test-extras = ["test"]
[tool.cibuildwheel.windows]
archs = ["AMD64", "x86"] # No ARM64: https://gitlab.kitware.com/cmake/cmake/-/issues/26493

0 comments on commit 1412099

Please sign in to comment.