diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-05-24 11:17:15 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-05-30 13:44:50 -0400 |
commit | d8901469223bac82ed29cb9f5e5e42bf5e927f68 (patch) | |
tree | 2026a7446f5fe9f732b4b4a77ab3436684ac8be4 /.gitlab-ci.yml | |
parent | 0e5bb3a883cfc2faf8e36ff83d3d985e6f4ed93f (diff) | |
download | haskell-d8901469223bac82ed29cb9f5e5e42bf5e927f68.tar.gz |
ci: Allow testing bootstrapping on MRs using the "test-bootstrap" label
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5829e6bc11..de11ada4be 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -556,6 +556,7 @@ source-tarball: rules: - if: $NIGHTLY - if: '$RELEASE_JOB == "yes"' + - if: '$CI_MERGE_REQUEST_LABELS =~ /.*test-bootstrap.*/' test-bootstrap: @@ -589,6 +590,7 @@ test-bootstrap: rules: - if: $NIGHTLY - if: '$RELEASE_JOB == "yes"' + - if: '$CI_MERGE_REQUEST_LABELS =~ /.*test-bootstrap.*/' ############################################################ |