Skip to content

Commit

Permalink
Merge pull request #34 from guardian/mc-test-macos-ARM-M1
Browse files Browse the repository at this point in the history
Add running on Mac M1
  • Loading branch information
mchv authored Feb 2, 2024
2 parents bad4d99 + f8c61b3 commit a5ee945
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-14, macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -24,7 +24,12 @@ jobs:
distribution: 'adopt'
java-version: '11'
cache: 'sbt'


- name: Setup SBT
if: matrix.os == 'macos-14'
run: |
brew install sbt
- name: Build
run: |
./scripts/build.sh
Expand Down

0 comments on commit a5ee945

Please sign in to comment.