diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-06-12 01:36:33 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-06-12 14:08:35 -0400 |
commit | 87d90ebe446a9c4df06ae28e0c897f069e1dc217 (patch) | |
tree | f2b55f7efab75fb6dcc461f46162c72d78171896 | |
parent | 9414ecb49a6bb2f32ea423325392a73b86eac450 (diff) | |
download | haskell-wip/disable-llvm-ci.tar.gz |
gitlab-ci: Disable validate-x86_64-linux-deb9 job to reduce loadwip/disable-llvm-ci
Enable artifacts on to ensure we have bindist coverage.
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 62c929fed3..8f069cb220 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -441,7 +441,8 @@ nightly-i386-linux-deb9: cache: key: linux-x86_64-deb9 -validate-x86_64-linux-deb9: +# Disabled to reduce CI load +.validate-x86_64-linux-deb9: extends: .build-x86_64-linux-deb9 artifacts: when: always @@ -464,6 +465,9 @@ validate-x86_64-linux-deb9-debug: variables: BUILD_FLAVOUR: validate TEST_ENV: "x86_64-linux-deb9-debug" + artifacts: + when: always + expire_in: 2 week # Disabled to alleviate CI load .validate-x86_64-linux-deb9-llvm: @@ -787,7 +791,7 @@ doc-tarball: - x86_64-linux image: ghcci/x86_64-linux-deb9:0.2 dependencies: - - validate-x86_64-linux-deb9 + - validate-x86_64-linux-deb9-debug - validate-x86_64-windows variables: LINUX_BINDIST: "ghc-x86_64-deb9-linux.tar.xz" |