ci/update_traces_checksum: Make it work on restricted traces jobs, too.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40959>
This commit is contained in:
Emma Anholt 2026-04-10 15:38:50 -07:00 committed by Marge Bot
parent 946d84bf48
commit d621749fa7

View file

@ -151,7 +151,7 @@ def gather_results(
) -> None:
"""Gather results"""
target_jobs_regex = re.compile(".*-traces([:].*)?$")
target_jobs_regex = re.compile(".*-traces(-restricted)?([:].*)?$")
for job in pipeline.jobs.list(all=True, sort="desc"):
if target_jobs_regex.match(job.name) and job.status == "failed":