summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-11-27 11:59:34 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-12-02 11:56:54 -0500
commit38338757e0854a0fc6c3a99d1c35392227623887 (patch)
tree0fa86bc5e630de16531ef1962c7c211f1dce7000
parent470ef0e7d0d6c07b17252a660d72691dd02a1dad (diff)
downloadhaskell-38338757e0854a0fc6c3a99d1c35392227623887.tar.gz
gitlab-ci: Add Debian 10 builds
-rw-r--r--.gitlab-ci.yml36
1 files changed, 35 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 72965b83e2..6d279fdbd2 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: dea5cafb3693a771ff42cebd73d0c89f280beef0
+ DOCKER_REV: 408eff66aef6ca2b44446c694c5a56d6ca0460cc
# Sequential version number capturing the versions of all tools fetched by
# .gitlab/win32-init.sh.
@@ -629,6 +629,40 @@ validate-x86_64-linux-deb9-dwarf:
BIN_DIST_PREP_TAR_COMP: "ghc-x86_64-deb9-linux-dwarf.tar.xz"
#################################
+# x86_64-linux-deb10
+#################################
+
+.build-x86_64-linux-deb10:
+ extends: .validate-linux
+ stage: full-build
+ image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb10:$DOCKER_REV"
+ variables:
+ TEST_ENV: "x86_64-linux-deb10"
+ BIN_DIST_PREP_TAR_COMP: "./ghc-x86_64-deb10-linux.tar.xz"
+ XZ: "xz -T0"
+ cache:
+ key: linux-x86_64-deb10
+
+# Disabled to alleviate CI load
+.validate-x86_64-linux-deb10:
+ extends: .build-x86_64-linux-deb10
+ stage: full-build
+
+nightly-x86_64-linux-deb10:
+ extends: .build-x86_64-linux-deb10
+ artifacts:
+ expire_in: 2 weeks
+ variables:
+ TEST_TYPE: slowtest
+ only:
+ variables:
+ - $NIGHTLY
+
+release-x86_64-linux-deb10:
+ <<: *release
+ extends: .build-x86_64-linux-deb10
+
+#################################
# x86_64-linux-deb8
#################################