diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-02 15:14:38 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-02-03 14:45:28 -0500 |
commit | 4e6780bb44f81f81a39b6b362eef855e68431882 (patch) | |
tree | 00793f6f5edcf382a2e072d62e2075d1f8c12f64 /.gitlab-ci.yml | |
parent | 84ab0153a3527e7bd8b627ca559d782064af3c80 (diff) | |
download | haskell-4e6780bb44f81f81a39b6b362eef855e68431882.tar.gz |
ci: Add debian 11 jobs (validate/release/nightly)
Fixes #21002
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 35 |
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 ################################# |