Skip to content

Commit

Permalink
Build on macos13 Intel and macos-14 ARM
Browse files Browse the repository at this point in the history
macos-latest is macOS 12 Intel currently. Per [the post announcing macOS 14 runner availability][macos14ann], `macos-latest` will skip macos-13 and move to macos-14 by June 2024. Per the [M1 runner announcement][m1ann], only the macos-14 runners will have ARM and will have it by default, so we'll use that to get macOS ARM testing.

[macos14ann]: https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/
[m1ann]: https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/
  • Loading branch information
colindean authored Jan 31, 2024
1 parent b32c144 commit 81a7ab1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
os:
- ubuntu-latest
- macos-13
- macos-14
runs-on: ${{ matrix.os }}

steps:
Expand Down

0 comments on commit 81a7ab1

Please sign in to comment.