diff options
author | Rémy Coutable <remy@rymai.me> | 2019-04-17 17:32:25 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-04-17 17:32:32 +0200 |
commit | 5fd22e541219a4f7aea0c355055991ef1fa59372 (patch) | |
tree | 749e6f8bd6d762ff7bac3b0bff3ac7b1843f766f /.gitlab | |
parent | 873df37e3c8b02d49d6824b196ae0126e23952fd (diff) | |
download | gitlab-ce-5fd22e541219a4f7aea0c355055991ef1fa59372.tar.gz |
Retry twice the system, API and unknown failures
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/ci/global.gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/ci/global.gitlab-ci.yml b/.gitlab/ci/global.gitlab-ci.yml index c48672183b9..466c47b37c7 100644 --- a/.gitlab/ci/global.gitlab-ci.yml +++ b/.gitlab/ci/global.gitlab-ci.yml @@ -1,6 +1,6 @@ .dedicated-runner: retry: - max: 1 # This is confusing but this means "2 runs at max". + max: 2 # This is confusing but this means "3 runs at max". when: - unknown_failure - api_failure |