diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-05-24 11:17:15 +0100 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-05-30 14:16:00 +0100 |
commit | bf7a43571df1814bf1a54c05aec442473cfc979b (patch) | |
tree | f9cc43d0b7f8b0d8c5054672df9d0814b5868cdb | |
parent | ab5f8ef931abde99d097ce0819bd0f9f48776b58 (diff) | |
download | haskell-bf7a43571df1814bf1a54c05aec442473cfc979b.tar.gz |
ci: Allow testing bootstrapping on MRs using the "test-bootstrap" label
-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.*/' ############################################################ |