Skip to content

Commit f38bd20

Browse files
andreasabelBodigrim
authored andcommitted
CI: macos-14 (arm, now macos-latest) does not support GHC<=9.0
- use macos-13 for GHC 8.0 and 8.2 - test the more recent GHCs, drop 8.4 instead
1 parent 0c7a37b commit f38bd20

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/other.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,17 @@ jobs:
1414
fail-fast: true
1515
matrix:
1616
os: [windows-latest, macOS-latest]
17-
ghc: ['8.0', '8.2', '8.4', '9.2', 'latest']
17+
ghc: ['9.2', '9.4', '9.6', 'latest']
18+
## macos-14 (arm, as of 2024-05-03 macos-latest) fails with ghc <= 9.0
19+
include:
20+
- os: windows-latest
21+
ghc: '8.0'
22+
- os: macos-13
23+
ghc: '8.0'
24+
- os: windows-latest
25+
ghc: '8.2'
26+
- os: macos-13
27+
ghc: '8.2'
1828
steps:
1929
- uses: actions/checkout@v4
2030
- uses: haskell-actions/setup@v2
@@ -41,7 +51,7 @@ jobs:
4151
run: |
4252
cabal test all
4353
- name: Haddock
44-
if: matrix.ghc != '7.10' && matrix.ghc != '8.0'
54+
if: matrix.ghc != '8.0'
4555
run: |
4656
cabal haddock all
4757

0 commit comments

Comments
 (0)