Skip to content

Commit

Permalink
Fix Intel Mac CI builds.
Browse files Browse the repository at this point in the history
It turns out that since GitHub switched the default macOS runners to
aarch64 machines, our CI config has been producing aarch64 binaries both
in the `aarch64-macos` tarballs *and* the `x86_64-macos` tarballs. Oops!

This fixes the config to do the right thing: natively compile aarch64
binaries, and cross-compile x86-64 binaries.
  • Loading branch information
cfallin committed Sep 5, 2024
1 parent 66b77a6 commit c5083ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
os: ubuntu-latest
- build: x86_64-macos
os: macos-latest
target: x86_64-apple-darwin
- build: aarch64-macos
os: macos-latest
target: aarch64-apple-darwin
- build: x86_64-windows
os: windows-latest
- build: x86_64-mingw
Expand Down

0 comments on commit c5083ef

Please sign in to comment.