Skip to content

Commit

Permalink
Fix runs-on for wheel builds for native arm (aio-libs#10410)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Feb 5, 2025
1 parent 6ee81df commit 1009c06
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -365,31 +365,31 @@ jobs:
contents: read # to fetch code (actions/checkout)

name: Build wheels on ${{ matrix.os }} ${{ matrix.qemu }} ${{ matrix.musl }}
runs-on: ${{ matrix.os }}-latest
runs-on: ${{ matrix.os }}
needs: pre-deploy
strategy:
matrix:
os: [ubuntu, windows, macos, "ubuntu-24.04-arm"]
os: ["ubuntu-latest", "windows-latest", "macos-latest", "ubuntu-24.04-arm"]
qemu: ['']
musl: [""]
include:
# Split ubuntu/musl jobs for the sake of speed-up
- os: ubuntu
- os: ubuntu-latest
qemu: ppc64le
musl: ""
- os: ubuntu
- os: ubuntu-latest
qemu: s390x
musl: ""
- os: ubuntu
- os: ubuntu-latest
qemu: armv7l
musl: musllinux
- os: ubuntu
- os: ubuntu-latest
qemu: s390x
musl: musllinux
- os: ubuntu
- os: ubuntu-latest
qemu: s390x
musl: musllinux
- os: ubuntu
- os: ubuntu-latest
musl: musllinux
- os: ubuntu-24.04-arm
musl: musllinux
Expand Down

0 comments on commit 1009c06

Please sign in to comment.