Module: Mesa Branch: main Commit: 26dc5b3737f3f1d86b5ef602aa90b87098c31e8d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=26dc5b3737f3f1d86b5ef602aa90b87098c31e8d
Author: David Heidelberg <[email protected]> Date: Sat Mar 4 21:16:09 2023 +0100 ci/ci_run_n_monitor: while we usually disable many jobs, print them inline Saving scrolling time... Reviewed-by: Guilherme Gallo <[email protected]> Signed-off-by: David Heidelberg <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21713> --- bin/ci/ci_run_n_monitor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/ci/ci_run_n_monitor.py b/bin/ci/ci_run_n_monitor.py index 915299e36ae..6cfc61a6410 100755 --- a/bin/ci/ci_run_n_monitor.py +++ b/bin/ci/ci_run_n_monitor.py @@ -195,7 +195,7 @@ def cancel_job(project, job) -> None: """Cancel GitLab job""" pjob = project.jobs.get(job.id, lazy=True) pjob.cancel() - print(f"♲ {job.name}") + print(f"♲ {job.name}", end=" ") def cancel_jobs(project, to_cancel) -> None: @@ -206,6 +206,7 @@ def cancel_jobs(project, to_cancel) -> None: with ThreadPoolExecutor(max_workers=6) as exe: part = partial(cancel_job, project) exe.map(part, to_cancel) + print() def print_log(project, job_id) -> None:
