diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-03-08 22:48:23 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-03-08 22:51:37 +0000 |
commit | a60ddffd75b9ff07b948ea8cdc71f677a4f8d167 (patch) | |
tree | c79f37e7902da042d4c14bfa029ead3aa680db29 /.gitlab-ci.yml | |
parent | d0f892fe08a869f5bb924741b828bb7efdfcd801 (diff) | |
download | haskell-a60ddffd75b9ff07b948ea8cdc71f677a4f8d167.tar.gz |
Move bootstrap and cabal-reinstall test jobs to nightlywip/night-jobs
CI is creaking under the pressure of too many jobs so attempt to reduce
the strain by removing a couple of jobs.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9bd789143e..6a95adb3e1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -340,7 +340,7 @@ hlint-ghc-and-base: - x86_64-linux -validate-x86_64-linux-deb10-hadrian: +.validate-x86_64-linux-deb10-hadrian: extends: .build-x86_64-linux-deb10-hadrian stage: full-build rules: @@ -932,7 +932,7 @@ test-cabal-reinstall-x86_64-linux-deb10: BUILD_FLAVOUR: validate TEST_ENV: "x86_64-linux-deb10-cabal-install" rules: - - if: '$CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/' + - if: $NIGHTLY ################################# # x86_64-linux-deb11 @@ -1286,7 +1286,7 @@ source-tarball: - mv _build/source-dist/*.xz . - python3 ./hadrian/bootstrap/bootstrap.py -w $GHC fetch -o hadrian-bootstrap-sources-$GHC_VERSION rules: - - if: '$CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/' + - if: $NIGHTLY @@ -1317,7 +1317,7 @@ test-bootstrap: BIN_DIST_NAME: "ghc-x86_64-deb10-linux" BUILD_FLAVOUR: "validate" rules: - - if: '$CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/' + - if: $NIGHTLY ############################################################ |