From 189b6577f41a085ed8d30fa4a5796ccd422e2f48 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Thu, 10 Jul 2025 17:15:36 -0700 Subject: [PATCH 1/2] .github/workflows/build_wheels.yml: Build aarch64 wheels on ubuntu-24.04-arm --- .github/workflows/build_wheels.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index d0c36a448..22fff9b2a 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -28,6 +28,8 @@ jobs: include: - os: ubuntu-22.04 arch: x86_64 + - os: ubuntu-24.04-arm + arch: aarch64 - os: macos-14 arch: arm64 - os: macos-13 @@ -41,7 +43,7 @@ jobs: - uses: actions/checkout@v4 - name: Build wheels - uses: pypa/cibuildwheel@v2.21.1 + uses: pypa/cibuildwheel@v2.23.3 env: CIBW_ARCHS: ${{ matrix.arch }} CIBW_TEST_REQUIRES: pytest From d6bff7e4beec8001e8121ce59a67130663a80e01 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Thu, 10 Jul 2025 17:21:30 -0700 Subject: [PATCH 2/2] .github/workflows/build_wheels.yml: Use fail-fast: false --- .github/workflows/build_wheels.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 22fff9b2a..42589b9ee 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -24,6 +24,7 @@ jobs: name: Build wheels on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: include: - os: ubuntu-22.04