Skip to content

Commit

Permalink
fixup: PR #28 (tested) (#30)
Browse files Browse the repository at this point in the history
fixed matrix naming and inclusion/exclusions
  • Loading branch information
MusicalNinjaDad authored May 16, 2024
1 parent cb2d90c commit 1736837
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ jobs:
run: cargo test --workspace

wheels:
name: Build wheels on ${{ matrix.os }}
name: Build wheels on ${{ matrix.os }} - ${{ matrix.target }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
target: ['*']
include:
- os: ubuntu-latest
target: '*x86*'
Expand All @@ -41,6 +42,9 @@ jobs:
target: '*ppc64le*'
- os: ubuntu-latest
target: '*s390x*'
exclude:
- os: ubuntu-latest
target: '*'
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
Expand Down

0 comments on commit 1736837

Please sign in to comment.