From 9beb9081fc4c878b41ba25b0f486cb01948c88fc Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 8 Feb 2024 18:02:31 +0000 Subject: [PATCH] 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: --- bin/ci/ci_run_n_monitor.py | 5 +++-- 1 file 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,