summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEric Engestrom <eric@igalia.com>2024-02-08 18:02:31 +0000
committerMarge Bot <emma+marge@anholt.net>2024-02-09 15:58:10 +0000
commit9beb9081fc4c878b41ba25b0f486cb01948c88fc (patch)
tree21f2abbca4965287032b3477c7f741804dc6d539 /bin
parent7154c1eb77ea644dfc02d69c9bd68eda0a31d4c1 (diff)
ci_run_n_monitor: print the target regex before adding the X/N bit
To avoid showing something too complex to the user, especially since this isn't something they added themselves or can remove. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27530>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ci/ci_run_n_monitor.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/ci/ci_run_n_monitor.py b/bin/ci/ci_run_n_monitor.py
index 8831697e5ab..1ba70353988 100755
--- a/bin/ci/ci_run_n_monitor.py
+++ b/bin/ci/ci_run_n_monitor.py
@@ -455,13 +455,14 @@ if __name__ == "__main__":
target = '|'.join(args.target)
target = target.strip()
+ deps = set()
+ print("🞋 job: " + Fore.BLUE + target + Style.RESET_ALL)
+
# Implicitly include `parallel:` jobs
target = f'({target})' + r'( \d+/\d+)?'
target_jobs_regex = re.compile(target)
- deps = set()
- print("🞋 job: " + Fore.BLUE + target + Style.RESET_ALL)
deps = find_dependencies(
token=token,
target_jobs_regex=target_jobs_regex,