Skip to content

Commit

Permalink
Fix CI for macos
Browse files Browse the repository at this point in the history
Per [maturin PR](PyO3/maturin#1620), use
`--target universal2-apple-darwin` instead
  • Loading branch information
Dr-Emann committed Apr 2, 2024
1 parent 7649d25 commit a3cbcec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, i686, aarch64]
target: [ x86_64, i686, aarch64 ]
steps:
- uses: actions/checkout@v3
- uses: PyO3/maturin-action@v1
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- uses: PyO3/maturin-action@v1
with:
command: build
args: --release -o dist --universal2 --find-interpreter
args: --release -o dist --target universal2-apple-darwin --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand All @@ -58,7 +58,7 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
needs: [macos, windows, linux]
needs: [ macos, windows, linux ]
steps:
- uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit a3cbcec

Please sign in to comment.