diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-25 10:24:12 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-25 10:24:12 +0000 |
commit | 8ed3d5fda3ad6ab9a1f4e50556850e605f000949 (patch) | |
tree | 5409c8bc37254259eb8241ec40e1a91b93dc7d8f /.gitlab-ci.yml | |
parent | 70bafefbfc5fc31d5fad3184fc9bdc623871923b (diff) | |
download | haskell-8ed3d5fda3ad6ab9a1f4e50556850e605f000949.tar.gz |
Remove test-bootstrap and cabal-reinstall jobs from fast-ci [skip ci]wip/fast-ci-fixes
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c6d95612a5..b30b38cedd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -945,6 +945,8 @@ test-cabal-reinstall-x86_64-linux-deb10: REINSTALL_GHC: "yes" BUILD_FLAVOUR: validate TEST_ENV: "x86_64-linux-deb10-cabal-install" + rules: + - if: '$CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/' ################################# # x86_64-linux-deb11 @@ -1297,6 +1299,11 @@ source-tarball: - ./hadrian/build source-dist - 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.*/' + + + test-bootstrap: stage: full-build @@ -1323,6 +1330,8 @@ test-bootstrap: TEST_ENV: "x86_64-linux-deb10-hadrian" BIN_DIST_NAME: "ghc-x86_64-deb10-linux" BUILD_FLAVOUR: "validate" + rules: + - if: '$CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/' ############################################################ |