summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-12-08 22:12:50 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2022-12-09 09:36:54 +0000
commite84035dc872ffc4b500ca3c80eea1ef3f68d024c (patch)
tree9fb25b256825b242e2dd54ffc6329becf6898c77
parent602ab6c2bafe200c9cd178ec7c47bf55b33215fb (diff)
downloadhaskell-e84035dc872ffc4b500ca3c80eea1ef3f68d024c.tar.gz
ci: Bump boot images to use ghc-9.4.3
Also updates the bootstrap jobs to test booting 9.2 and 9.4.
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f19c78c561..9d7684973d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ variables:
GIT_SSL_NO_VERIFY: "1"
# Commit of ghc/ci-images repository from which to pull Docker images
- DOCKER_REV: 205afce5c7ebdb8666b96638f6758fe527f40a7f
+ DOCKER_REV: 0de79b7676de197f5d4b79f22a8220a7d563a427
# Sequential version number of all cached things.
# Bump to invalidate GitLab CI cache.
@@ -82,9 +82,9 @@ workflow:
# which versions of GHC to allow bootstrap with
.bootstrap_matrix : &bootstrap_matrix
matrix:
- - GHC_VERSION: 9.0.2
- DOCKER_IMAGE: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb10-ghc9_0:$DOCKER_REV"
- - GHC_VERSION: 9.2.2
+ - GHC_VERSION: 9.2.5
+ DOCKER_IMAGE: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb10-ghc9_2:$DOCKER_REV"
+ - GHC_VERSION: 9.4.3
DOCKER_IMAGE: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb10:$DOCKER_REV"
# Allow linters to fail on draft MRs.