Skip to content

Commit

Permalink
don't use macos-latest with dmd as it's now v14 with M1 cpu
Browse files Browse the repository at this point in the history
the macos-latest GitHub runner has been updated to Mac OS 14 running on an arm based M1 cpu.
  • Loading branch information
SingingBush authored May 14, 2024
1 parent d9bafb8 commit 9a28569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- ldc-1.28.1 # eq to dmd v2.098.1 (exclude on Windows)
- ldc-1.27.1 # eq to dmd v2.097.2 (exclude on Windows)
include:
- { os: macos-latest, compiler: dmd-latest }
- { os: macos-13, compiler: dmd-latest } ## Cannot use dmd on Apple silicon (latest is 14 with M1 cpu)
- { os: macos-latest, compiler: ldc-latest }
- { os: 'ubuntu-latest', compiler: 'ldc-1.28.1' }
- { os: 'ubuntu-latest', compiler: 'ldc-1.27.1' }
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
os: [ ubuntu-latest, windows-latest, macos-13 ]
compiler:
- dmd-latest
- ldc-latest
Expand Down

0 comments on commit 9a28569

Please sign in to comment.