summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-12-08 22:12:50 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-12-09 20:16:20 -0500
commit195b08b4e933706ba4a29ab0a8357556d56f792c (patch)
tree8db401ed194f79cbf28abf87b2bef42ecf9be27e /.gitlab-ci.yml
parentfac3e568e110226f68f4f9a9ad483fb5c0a7c98b (diff)
downloadhaskell-195b08b4e933706ba4a29ab0a8357556d56f792c.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.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c12ecc5284..400d00840c 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.