Skip to content

Commit

Permalink
Upgrade CI configuration following macOS-11 deprecation
Browse files Browse the repository at this point in the history
macOS-11 is going away at the end of June.
As a consequence, we upgrade to macOS-12, upgrade the supported
frontend versions, and add some arm64 tests to prepare for
future upgrades.
  • Loading branch information
Geod24 committed Jun 17, 2024
1 parent 9ef6c8d commit c00fb9c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
fail-fast: false
matrix:
# Latest stable version, update at will
os: [ macOS-11, ubuntu-20.04, windows-2019 ]
os: [ macOS-12, ubuntu-20.04, windows-2019 ]
dc:
# Always test latest as that is what we use to compile on release
- dmd-latest
Expand All @@ -62,15 +62,17 @@ jobs:
- ldc-master
# Test some intermediate versions
- ldc-1.26.0
- dmd-2.098.1
- dmd-2.101.1
- dmd-2.104.2
- dmd-2.099.1
- dmd-2.102.2
- dmd-2.105.3
include:
- { do_test: false }
- { dc: dmd-latest, do_test: true }
- { dc: ldc-latest, do_test: true }
- { dc: dmd-master, do_test: true }
- { dc: ldc-master, do_test: true }
# Test on ARM64
- { os: macOS-14, dc: ldc-latest, do_test: true }

runs-on: ${{ matrix.os }}
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ macOS-11, ubuntu-20.04, windows-2019 ]
os: [ macOS-12, ubuntu-20.04, windows-2019 ]
arch: [ x86_64 ]
include:
- { os: windows-2019, arch: i686 }
- { os: macOS-latest, arch: arm64 }

runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit c00fb9c

Please sign in to comment.