summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-02-02 15:14:38 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2022-02-03 09:24:02 +0000
commit712659065ec3ed34c6bc5dd3217c5d54f60ff24f (patch)
tree10f512f3cfd07c811ab4d31472ae114e78ecb634
parent88fba8a4b3c22e953a634b81dd0b67ec66eb5e72 (diff)
downloadhaskell-wip/deb11-release.tar.gz
ci: Add debian 11 jobs (validate/release/nightly)wip/deb11-release
Fixes #21002
-rw-r--r--.gitlab-ci.yml35
1 files changed, 34 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0cd7e2673f..e72c394f70 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: 4ed1a4f27828ba96a34662dc954335e29b470cd2
+ DOCKER_REV: 885dfba7f74583d6a394dbf711cc805178cfcc47
# Sequential version number of all cached things.
# Bump to invalidate GitLab CI cache.
@@ -937,6 +937,39 @@ nightly-x86_64-linux-deb10-llvm:
TEST_ENV: "x86_64-linux-deb10-llvm"
#################################
+# x86_64-linux-deb11
+#################################
+
+.build-x86_64-linux-deb11:
+ extends: .validate-linux
+ image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb11:$DOCKER_REV"
+ variables:
+ TEST_ENV: "x86_64-linux-deb11"
+ BIN_DIST_PREP_TAR_COMP: "./ghc-x86_64-deb11-linux.tar.xz"
+ cache:
+ key: linux-x86_64-deb11-$CACHE_REV
+
+# Disabled to reduce CI load
+.validate-x86_64-linux-deb11:
+ extends: .build-x86_64-linux-deb11
+ stage: full-build
+ artifacts:
+ when: always
+ expire_in: 2 week
+
+release-x86_64-linux-deb11:
+ <<: *release
+ extends: .build-x86_64-linux-deb11
+ stage: full-build
+
+nightly-x86_64-linux-deb11:
+ <<: *nightly
+ extends: .build-x86_64-linux-deb11
+ stage: full-build
+ variables:
+ TEST_TYPE: slowtest
+
+#################################
# x86_64-linux-ubuntu 20.04
#################################