Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,14 @@ jobs:
path: dist

macos:
runs-on: ${{ matrix.runner }}
# Both targets build on Apple-Silicon macos-14 runners (which can cross-compile
# the x86_64 wheel). The Intel macos-13 runners are being wound down and can sit
# queued for hours, which would block the whole release on the `pypi` job.
runs-on: macos-14
strategy:
fail-fast: false
matrix:
include:
- runner: macos-13
target: x86_64
- runner: macos-14
target: aarch64
target: [x86_64, aarch64]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
Loading