Skip to content

Commit

Permalink
CI: macos-14 (arm, now macos-latest) does not support GHC<=9.0
Browse files Browse the repository at this point in the history
- use macos-13 for GHC 8.0 and 8.2
- test the more recent GHCs, drop 8.4 instead
  • Loading branch information
andreasabel committed May 3, 2024
1 parent 0c7a37b commit 29edbcb
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@ jobs:
fail-fast: true
matrix:
os: [windows-latest, macOS-latest]
ghc: ['8.0', '8.2', '8.4', '9.2', 'latest']
ghc: ['9.2', '9.4', '9.6', 'latest']
## macos-14 (arm, as of 2024-05-03 macos-latest) fails with ghc <= 9.0
include:
- os: windows-latest
ghc: '8.0'
- os: macos-13
ghc: '8.0'
- os: windows-latest
ghc: '8.2'
- os: macos-13
ghc: '8.2'
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
Expand All @@ -41,7 +51,7 @@ jobs:
run: |
cabal test all
- name: Haddock
if: matrix.ghc != '7.10' && matrix.ghc != '8.0'
if: matrix.ghc != '8.0'
run: |
cabal haddock all
Expand Down

0 comments on commit 29edbcb

Please sign in to comment.