Skip to content

Commit cd729f2

Browse files
committed
Test with GHC 9.12
1 parent 5b3da8f commit cd729f2

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/haskell-ci.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# For more information, see https://github.com/haskell-CI/haskell-ci
1010
#
11-
# version: 0.19.20240708
11+
# version: 0.19.20241109
1212
#
13-
# REGENDATA ("0.19.20240708",["github","--config=cabal.haskell-ci","--ghc-head","cabal.project"])
13+
# REGENDATA ("0.19.20241109",["github","--config=cabal.haskell-ci","--ghc-head","cabal.project"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -32,6 +32,11 @@ jobs:
3232
strategy:
3333
matrix:
3434
include:
35+
- compiler: ghc-9.12.0.20241031
36+
compilerKind: ghc
37+
compilerVersion: 9.12.0.20241031
38+
setup-method: ghcup
39+
allow-failure: false
3540
- compiler: ghc-9.10.1
3641
compilerKind: ghc
3742
compilerVersion: 9.10.1
@@ -42,9 +47,9 @@ jobs:
4247
compilerVersion: 9.8.2
4348
setup-method: ghcup
4449
allow-failure: false
45-
- compiler: ghc-9.6.5
50+
- compiler: ghc-9.6.6
4651
compilerKind: ghc
47-
compilerVersion: 9.6.5
52+
compilerVersion: 9.6.6
4853
setup-method: ghcup
4954
allow-failure: false
5055
- compiler: ghc-9.4.8
@@ -121,7 +126,7 @@ jobs:
121126
echo "HCNUMVER=$HCNUMVER" >> "$GITHUB_ENV"
122127
echo "ARG_TESTS=--enable-tests" >> "$GITHUB_ENV"
123128
echo "ARG_BENCH=--enable-benchmarks" >> "$GITHUB_ENV"
124-
if [ $((HCNUMVER > 91001)) -ne 0 ] ; then echo "HEADHACKAGE=true" >> "$GITHUB_ENV" ; else echo "HEADHACKAGE=false" >> "$GITHUB_ENV" ; fi
129+
if [ $((HCNUMVER >= 91200)) -ne 0 ] ; then echo "HEADHACKAGE=true" >> "$GITHUB_ENV" ; else echo "HEADHACKAGE=false" >> "$GITHUB_ENV" ; fi
125130
echo "ARG_COMPILER=--$HCKIND --with-compiler=$HC" >> "$GITHUB_ENV"
126131
echo "GHCJSARITH=0" >> "$GITHUB_ENV"
127132
env:

containers-tests/containers-tests.cabal

+1-1
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.5 || ==9.8.2 || ==9.10.1
30+
==9.4.8 || ==9.6.6 || ==9.8.2 || ==9.10.1 || ==9.12.1
3131

3232
source-repository head
3333
type: git

containers/containers.cabal

+1-1
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.5 || ==9.8.2 || ==9.10.1
31+
==9.4.8 || ==9.6.6 || ==9.8.2 || ==9.10.1 || ==9.12.1
3232

3333
source-repository head
3434
type: git

0 commit comments

Comments
 (0)