Module: Mesa Branch: main Commit: 5353fc94e5e957d4d1432adb41e864b0d01692d4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5353fc94e5e957d4d1432adb41e864b0d01692d4
Author: David Heidelberg <[email protected]> Date: Fri Mar 3 20:26:52 2023 +0100 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 <[email protected]> Signed-off-by: David Heidelberg <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21668> --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 347d1b46fb1..318d6a03451 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'
