Skip to content

Commit 3cca959

Browse files
[PR #10410/1009c066 backport][3.11] Fix runs-on for wheel builds for native arm (#10411)
**This is a backport of PR #10410 as merged into master (1009c06).** -latest was being appended to everything but this will not work with the native arm runners Co-authored-by: J. Nick Koston <[email protected]>
1 parent d07f577 commit 3cca959

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci-cd.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -343,31 +343,31 @@ jobs:
343343

344344
build-wheels:
345345
name: Build wheels on ${{ matrix.os }} ${{ matrix.qemu }} ${{ matrix.musl }}
346-
runs-on: ${{ matrix.os }}-latest
346+
runs-on: ${{ matrix.os }}
347347
needs: pre-deploy
348348
strategy:
349349
matrix:
350-
os: [ubuntu, windows, macos, "ubuntu-24.04-arm"]
350+
os: ["ubuntu-latest", "windows-latest", "macos-latest", "ubuntu-24.04-arm"]
351351
qemu: ['']
352352
musl: [""]
353353
include:
354354
# Split ubuntu/musl jobs for the sake of speed-up
355-
- os: ubuntu
355+
- os: ubuntu-latest
356356
qemu: ppc64le
357357
musl: ""
358-
- os: ubuntu
358+
- os: ubuntu-latest
359359
qemu: s390x
360360
musl: ""
361-
- os: ubuntu
361+
- os: ubuntu-latest
362362
qemu: armv7l
363363
musl: musllinux
364-
- os: ubuntu
364+
- os: ubuntu-latest
365365
qemu: s390x
366366
musl: musllinux
367-
- os: ubuntu
367+
- os: ubuntu-latest
368368
qemu: s390x
369369
musl: musllinux
370-
- os: ubuntu
370+
- os: ubuntu-latest
371371
musl: musllinux
372372
- os: ubuntu-24.04-arm
373373
musl: musllinux

0 commit comments

Comments
 (0)