Skip to content

Commit

Permalink
Explicitly specify Mac OS version in CI
Browse files Browse the repository at this point in the history
macos-latest now builds on an M1, so we downgrade to ensure creation of x86_64
binaries for Mac.

Fixes #449.
  • Loading branch information
garfieldnate committed May 1, 2024
1 parent d0dfcc8 commit bab4a56
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
os: [
ubuntu-latest,
# latest available X86_64 target
macos-12,
]
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down

0 comments on commit bab4a56

Please sign in to comment.