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-Tag: alessio/regression/026024a6ae~29^2 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=bbcce1bfc1243d74ff0ec736e7d370c4cb8591f2;p=thirdparty%2Fbind9.git Retry job in case of AWS Spot Instance interruption --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed29d303281..103b04a49c9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -64,6 +64,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: - autoconf - precheck