mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
bin/ci: crnm: columns list when waiting jobs update
It's another example of a long list of job names, when the jobs waiting for a status update is printed. The print formatted list can help to present it. Signed-off-by: Sergi Blanch Torne <sergi.blanch.torne@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34856>
This commit is contained in:
parent
e4396c40fa
commit
f65975975e
1 changed files with 3 additions and 5 deletions
|
|
@ -241,11 +241,9 @@ def monitor_pipeline(
|
|||
continue
|
||||
|
||||
if jobs_waiting:
|
||||
print_once(
|
||||
f"{Fore.YELLOW}Waiting for jobs to update status:",
|
||||
", ".join(jobs_waiting),
|
||||
Fore.RESET,
|
||||
)
|
||||
print(f"{Fore.YELLOW}Waiting for jobs to update status:")
|
||||
print_formatted_list(jobs_waiting, indentation=8)
|
||||
print(Style.RESET_ALL, end='')
|
||||
pretty_wait(REFRESH_WAIT_JOBS)
|
||||
continue
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue