From: Emanuel Petr Date: Mon, 17 Jun 2024 18:06:13 +0000 (+0200) Subject: Retry job in case of AWS Spot Instance interruption X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ac3aef2fa03f786a473546ccd47387831660aae;p=thirdparty%2Fbind9.git Retry job in case of AWS Spot Instance interruption (cherry picked from commit bbcce1bfc1243d74ff0ec736e7d370c4cb8591f2) --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1af3e0fadfd..8136097a5ac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,6 +55,13 @@ default: # See: https://docs.gitlab.com/ee/ci/pipelines/settings.html#auto-cancel-redundant-pipelines interruptible: true + # AWS can interrupt the spot instance anytime, so let's retry the job when + # the interruption event happens to avoid a pipeline failure. + retry: + max: 2 + when: + - runner_system_failure + stages: - precheck - build