Skip to content

Commit f97b929

Browse files
committed
use the linux arm64 runner, is faster
1 parent d8eac51 commit f97b929

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

.github/workflows/wheels.yml

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,28 +34,16 @@ jobs:
3434

3535

3636
build_wheels:
37-
name: Wheels on ${{ matrix.os }}${{ matrix.extra }}
37+
name: Wheels on ${{ matrix.os }}
3838
runs-on: ${{ matrix.os }}
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
os: [ubuntu-latest, windows-latest, macos-latest]
43-
arch_linux: ["auto"]
44-
extra: [""]
45-
include:
46-
- os: ubuntu-latest
47-
arch_linux: "aarch64"
48-
extra: " - aarch64"
49-
artifact-extra: "-aarch64"
42+
os: [ubuntu-latest, windows-latest, macos-latest, ubuntu-24.04-arm]
43+
5044
steps:
5145
- uses: actions/checkout@v4
5246

53-
- name: Set up QEMU
54-
if: runner.os == 'Linux'
55-
uses: docker/setup-qemu-action@v3
56-
with:
57-
platforms: all
58-
5947
- uses: pypa/[email protected]
6048
env:
6149
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
@@ -66,10 +54,14 @@ jobs:
6654
run: git diff --exit-code
6755
shell: bash
6856

57+
- name: List wheels
58+
run: ls -l wheelhouse/
59+
shell: bash
60+
6961
- name: Upload wheels
7062
uses: actions/upload-artifact@v4
7163
with:
72-
name: wheel-${{ matrix.os }}${{ matrix.artifact-extra }}
64+
name: wheel-${{ matrix.os }}
7365
path: wheelhouse/*.whl
7466
compression-level: 0
7567
if-no-files-found: error

0 commit comments

Comments
 (0)