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

[PR #10396/481a8374 backport][3.12] Switch to native arm runners for wheel builds #10399

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
20 changes: 16 additions & 4 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -347,16 +347,27 @@ jobs:
needs: pre-deploy
strategy:
matrix:
os: [ubuntu, windows, macos]
os: [ubuntu, windows, macos, "ubuntu-24.04-arm"]
qemu: ['']
musl: [""]
include:
# Split ubuntu job for the sake of speed-up
# Split ubuntu/musl jobs for the sake of speed-up
- os: ubuntu
qemu: aarch64
qemu: ppc64le
musl: ""
- os: ubuntu
qemu: s390x
musl: ""
- os: ubuntu
qemu: ppc64le
musl: musllinux
- os: ubuntu
qemu: s390x
musl: musllinux
- os: ubuntu
musl: musllinux
- os: ubuntu-24.04-arm
musl: musllinux
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -398,12 +409,13 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: ${{ matrix.musl == 'musllinux' && '*manylinux*' || '*musllinux*' }}
CIBW_ARCHS_MACOS: x86_64 arm64 universal2
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: >-
dist-${{ matrix.os }}-${{
dist-${{ matrix.os }}-${{ matrix.musl }}-${{
matrix.qemu
&& matrix.qemu
|| 'native'
Expand Down
Loading