Skip to content

Commit

Permalink
Do not cross-compile macOS targets
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwan committed Jun 28, 2024
1 parent 4534082 commit 01601b6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/cli-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,14 @@ jobs:
wheels-macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
target: [aarch64, x86_64]

include:
- os: macos-13
target: x86_64
- os: macos-14
# we cannot cross-compile, because we need also all dependencies for the specified target
target: aarch64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down

0 comments on commit 01601b6

Please sign in to comment.