Skip to content

Commit

Permalink
CI: macOS M1 architecture
Browse files Browse the repository at this point in the history
Add `macos-14` target for building on Apple Silicon (M1)
macOS.

See the following url for details:
https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/
  • Loading branch information
junhochoi authored and ghedo committed Apr 10, 2024
1 parent 68da664 commit d1c44fc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,12 @@ jobs:
make -C quiche/examples
quiche_macos:
runs-on: macos-latest
strategy:
matrix:
target:
- "macos-latest" # Intel (x86_64)
- "macos-14" # Apple Silicon (M1)
runs-on: ${{ matrix.target }}
# Only run on "pull_request" event for external PRs. This is to avoid
# duplicate builds for PRs created from internal branches.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
Expand Down

0 comments on commit d1c44fc

Please sign in to comment.