Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use native aarch64 CI builders #507

Merged
merged 3 commits into from
Mar 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ env:
CIBW_BUILD_VERBOSITY: 1
CIBW_TEST_COMMAND: pytest --pyargs numexpr
# Testing on aarch64 takes too long, as it is currently emulated on GitHub Actions
CIBW_TEST_SKIP: "*linux*aarch64*"
# Building for musllinux and aarch64 takes way too much time.
# Moreover, NumPy is not providing musllinux for x86_64 either, so it's not worth it.
CIBW_SKIP: "*musllinux*aarch64* *musllinux*x86_64*"
Expand All @@ -38,7 +37,7 @@ jobs:
artifact_name: "linux-x86_64"

# Linux ARM64 builds (native runners)
- os: ubuntu-latest
- os: ubuntu-24.04-arm
arch: aarch64
cibw_pattern: "cp3{10,11,12,13,13t}-manylinux*"
artifact_name: "linux-aarch64"
Expand Down Expand Up @@ -72,12 +71,6 @@ jobs:
echo "CIBW_BEFORE_TEST=pip install pytest pytest-run-parallel" >> "$GITHUB_ENV"
echo "CIBW_TEST_COMMAND=pytest --parallel-threads=4 --pyargs numexpr" >> "$GITHUB_ENV"

- name: Set up QEMU
if: matrix.arch == 'aarch64'
uses: docker/setup-qemu-action@v3
with:
platforms: arm64

- name: Build wheels
uses: pypa/[email protected]

Expand Down