Module: Mesa Branch: main Commit: fa884141dccabfdfc35f8b829d598bb8e61014e3 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=fa884141dccabfdfc35f8b829d598bb8e61014e3
Author: Helen Koike <[email protected]> Date: Fri Sep 29 09:40:32 2023 -0300 ci/ci_run_n_monitor: add docs for multiple targets clarify how multiple targets can be used with the pipe character. Signed-off-by: Helen Koike <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25472> --- bin/ci/ci_run_n_monitor.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/ci/ci_run_n_monitor.py b/bin/ci/ci_run_n_monitor.py index 3e4da04f5b0..38c433e556d 100755 --- a/bin/ci/ci_run_n_monitor.py +++ b/bin/ci/ci_run_n_monitor.py @@ -238,7 +238,11 @@ def parse_args() -> None: epilog="Example: mesa-monitor.py --rev $(git rev-parse HEAD) " + '--target ".*traces" ', ) - parser.add_argument("--target", metavar="target-job", help="Target job") + parser.add_argument( + "--target", + metavar="target-job", + help="Target job regex. For multiple targets, separate with pipe | character", + ) parser.add_argument( "--token", metavar="token",
