CI: enable GHC8107 as well

This commit is contained in:
Richard Marko 2023-11-18 13:04:10 +01:00
parent 7a5ec09e4a
commit acf8935771
2 changed files with 7 additions and 3 deletions

View File

@ -11,8 +11,7 @@ in haskellCi.generalCi
defSteps.extraSteps.pre
# [ haskellCi.installCachixStep "hnix-store"
, haskellCi.BuildStep.NameIf
{ name =
"Install libsodium"
{ name = "Install libsodium"
, run = "sudo apt install libsodium-dev"
, `if` = "matrix.os == 'ubuntu-latest'"
}
@ -21,7 +20,11 @@ in haskellCi.generalCi
)
haskellCi.DhallMatrix::{
, ghc =
[ haskellCi.GHC.GHC963, haskellCi.GHC.GHC947, haskellCi.GHC.GHC902 ]
[ haskellCi.GHC.GHC963
, haskellCi.GHC.GHC947
, haskellCi.GHC.GHC902
, haskellCi.GHC.GHC8107
]
, os = [ haskellCi.OS.Ubuntu, haskellCi.OS.MacOS ]
}
: haskellCi.CI.Type

View File

@ -55,6 +55,7 @@ jobs:
- '9.6.3'
- '9.4.7'
- '9.0.2'
- '8.10.7'
os:
- "ubuntu-latest"
- "macos-latest"