From: David Heidelberg Date: Fri, 3 Mar 2023 19:26:52 +0000 (+0100) Subject: ci: Retry, retry, retry... No one likes to trigger Marge more than once. X-Git-Tag: upstream/23.3.3~12189 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5353fc94e5e957d4d1432adb41e864b0d01692d4;p=platform%2Fupstream%2Fmesa.git ci: Retry, retry, retry... No one likes to trigger Marge more than once. Sadly, have to decrease retry attempts from 2 to 1 for `runner_system_failure` since it's not doable while keeping one attempt for every other failure. Reviewed-by: Mike Blumenkrantz Signed-off-by: David Heidelberg Part-of: --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 347d1b4..318d6a0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -51,11 +51,10 @@ default: export CI_JOB_JWT="$(<${CI_JOB_JWT_FILE})" && rm "${CI_JOB_JWT_FILE}" - # Retry build or test jobs up to twice when the gitlab-runner itself fails somehow. + # Retry when job fails. Failed jobs can be found in the Mesa CI Daily Reports: + # https://gitlab.freedesktop.org/mesa/mesa/-/issues/?sort=created_date&state=opened&label_name%5B%5D=CI%20daily retry: - max: 2 - when: - - runner_system_failure + max: 1 include: - project: 'freedesktop/ci-templates'