diff options
author | Craig Scott <craig.scott@crascit.com> | 2020-06-10 12:42:33 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-06-10 12:42:40 (GMT) |
commit | 458775470510ea00bce6b6c0acd05284a4a6f92a (patch) | |
tree | 0f697dd35df9bc3301bbae7abc2aa255b7d3892d /Help | |
parent | c1b6adaedd687511b751442b714ad48c687b31b2 (diff) | |
parent | 131b8cc8ae845ec330ed54987543e1e869a96ee5 (diff) | |
download | CMake-458775470510ea00bce6b6c0acd05284a4a6f92a.zip CMake-458775470510ea00bce6b6c0acd05284a4a6f92a.tar.gz CMake-458775470510ea00bce6b6c0acd05284a4a6f92a.tar.bz2 |
Merge topic 'add-missing-test-args'
131b8cc8ae Help/dev: document other arguments to `Do: test`
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4870
Diffstat (limited to 'Help')
-rw-r--r-- | Help/dev/review.rst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Help/dev/review.rst b/Help/dev/review.rst index e430fbb..6c7e92c 100644 --- a/Help/dev/review.rst +++ b/Help/dev/review.rst @@ -306,6 +306,19 @@ Heavier jobs require a manual trigger to run: * ``--named <regex>``, ``-n <regex>``: Trigger jobs matching ``<regex>`` anywhere in their name. Job names may be seen on the merge request's pipeline page. + * ``--stage <stage>``, ``-s <stage>``: Only affect jobs in a given stage. + Stage names may be seen on the merge request's pipeline page. Note that + the names are determined by what is in the ``.gitlab-ci.yml`` file and may + be capitalized in the web page, so lowercasing the webpage's display name + for stages may be required. + * ``--action <action>``, ``-a <action>``: The action to perform on the jobs. + Possible actions: + + * ``manual`` (the default): Start jobs awaiting manual interaction. + * ``unsuccessful``: Start or restart jobs which have not completed + successfully. + * ``failed``: Restart jobs which have completed, but without success. + * ``completed``: Restart all completed jobs. If the merge request topic branch is updated by a push, a new manual trigger using one of the above methods is needed to start CI again. |