From 28cb2ed00cf261720a8db907f6ceb04266924ab7 Mon Sep 17 00:00:00 2001 From: Matthew Pickering Date: Thu, 12 Jan 2023 15:17:40 +0000 Subject: 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. --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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: -- cgit v1.2.1