Skip to content

Commit

Permalink
CI: Enable build workflows for M1-based macOS runners
Browse files Browse the repository at this point in the history
This should help make sure the platform is equally supported.
  • Loading branch information
rdw-software committed Feb 4, 2024
1 parent 854a1e3 commit 3fc96e8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@ jobs:
build:
if: github.event.pull_request.draft == false
name: Build for macOS
runs-on: macos-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, macos-14]
include:
- os: macos-latest
arch: x64
- os: macos-14
arch: M1

steps:
- name: Check out Git repository
Expand Down

0 comments on commit 3fc96e8

Please sign in to comment.