diff options
author | Rémy Coutable <remy@rymai.me> | 2018-12-03 15:45:19 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-12-06 10:06:14 +0100 |
commit | 2aeff4498bae9d526dcd4972f983dd96393eb51b (patch) | |
tree | fc97ddd6f796086eab310d75539282d796da1dcb /.gitlab-ci.yml | |
parent | 2a773f82c9eaaa90ffe060d2ffe92ccd6dfbf91c (diff) | |
download | gitlab-ce-2aeff4498bae9d526dcd4972f983dd96393eb51b.tar.gz |
Retry the review-{deploy,qa} jobs twice
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a97414cbba8..46604317232 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -949,6 +949,8 @@ no_ee_check: # GitLab Review apps review-deploy: <<: *review-base + retry: 2 + allow_failure: true variables: GIT_DEPTH: "1" HOST_SUFFIX: "${CI_ENVIRONMENT_SLUG}" @@ -978,6 +980,8 @@ review-deploy: .review-qa-base: &review-qa-base <<: *review-docker + retry: 2 + allow_failure: true variables: <<: *review-docker-variables API_TOKEN: "${GITLAB_BOT_MULTI_PROJECT_PIPELINE_POLLING_TOKEN}" @@ -1005,10 +1009,8 @@ review-deploy: review-qa-smoke: <<: *review-qa-base - # retry: 2 script: - gitlab-qa Test::Instance::Smoke "${QA_IMAGE}" "${CI_ENVIRONMENT_URL}" - allow_failure: true review-qa-all: <<: *review-qa-base |