mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-26 21:08:12 +02:00
ci/ci_run_n_monitor: while we usually disable many jobs, print them inline
Saving scrolling time... Reviewed-by: Guilherme Gallo <guilherme.gallo@collabora.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21713>
This commit is contained in:
parent
f5061758be
commit
26dc5b3737
1 changed files with 2 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue