summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2023-01-12 15:17:40 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2023-01-16 20:51:25 -0500
commit28cb2ed00cf261720a8db907f6ceb04266924ab7 (patch)
treeec1bbb19e7e606337f95fcb369554a265807123e /.gitlab-ci.yml
parent0b358d0c722f4bccbe6c3cafdad2ffe5c2b6fff5 (diff)
downloadhaskell-28cb2ed00cf261720a8db907f6ceb04266924ab7.tar.gz
ci: Don't use complicated image or clone in not-interruptible job
This job exists only for the meta-reason of not allowing nightly pipelines to be cancelled. It was taking two minutes to run as in order to run "true" we would also clone the whole GHC repo.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0719402e1b..059c36ca07 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -166,7 +166,9 @@ not-interruptible:
stage: not-interruptible
script: "true"
interruptible: false
- image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb10:$DOCKER_REV"
+ image: "debian:10"
+ variables:
+ GIT_STRATEGY: none
tags:
- lint
rules: