diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2023-01-12 15:17:40 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2023-01-16 20:51:25 -0500 |
commit | 28cb2ed00cf261720a8db907f6ceb04266924ab7 (patch) | |
tree | ec1bbb19e7e606337f95fcb369554a265807123e | |
parent | 0b358d0c722f4bccbe6c3cafdad2ffe5c2b6fff5 (diff) | |
download | haskell-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.
-rw-r--r-- | .gitlab-ci.yml | 4 |
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: |