Skip to content

Commit edc0e14

Browse files
authored
Update CI to test with GHC 9.10 (#1015)
1 parent 8ede1fc commit edc0e14

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,19 @@ jobs:
3232
strategy:
3333
matrix:
3434
include:
35-
- compiler: ghc-9.8.1
35+
- compiler: ghc-9.10.1
3636
compilerKind: ghc
37-
compilerVersion: 9.8.1
37+
compilerVersion: 9.10.1
3838
setup-method: ghcup
3939
allow-failure: false
40-
- compiler: ghc-9.6.4
40+
- compiler: ghc-9.8.2
4141
compilerKind: ghc
42-
compilerVersion: 9.6.4
42+
compilerVersion: 9.8.2
43+
setup-method: ghcup
44+
allow-failure: false
45+
- compiler: ghc-9.6.5
46+
compilerKind: ghc
47+
compilerVersion: 9.6.5
4348
setup-method: ghcup
4449
allow-failure: false
4550
- compiler: ghc-9.4.8
@@ -116,7 +121,7 @@ jobs:
116121
echo "HCNUMVER=$HCNUMVER" >> "$GITHUB_ENV"
117122
echo "ARG_TESTS=--enable-tests" >> "$GITHUB_ENV"
118123
echo "ARG_BENCH=--enable-benchmarks" >> "$GITHUB_ENV"
119-
if [ $((HCNUMVER > 90801)) -ne 0 ] ; then echo "HEADHACKAGE=true" >> "$GITHUB_ENV" ; else echo "HEADHACKAGE=false" >> "$GITHUB_ENV" ; fi
124+
if [ $((HCNUMVER > 91001)) -ne 0 ] ; then echo "HEADHACKAGE=true" >> "$GITHUB_ENV" ; else echo "HEADHACKAGE=false" >> "$GITHUB_ENV" ; fi
120125
echo "ARG_COMPILER=--$HCKIND --with-compiler=$HC" >> "$GITHUB_ENV"
121126
echo "GHCJSARITH=0" >> "$GITHUB_ENV"
122127
env:

containers-tests/containers-tests.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extra-source-files:
2727

2828
tested-with:
2929
GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 ||
30-
==9.4.8 || ==9.6.4 || ==9.8.1
30+
==9.4.8 || ==9.6.5 || ==9.8.2 || ==9.10.1
3131

3232
source-repository head
3333
type: git

containers/containers.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extra-source-files:
2828

2929
tested-with:
3030
GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 ||
31-
==9.4.8 || ==9.6.4 || ==9.8.1
31+
==9.4.8 || ==9.6.5 || ==9.8.2 || ==9.10.1
3232

3333
source-repository head
3434
type: git

0 commit comments

Comments
 (0)