Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Lapierre <mlapierre@gitlab.com>2019-01-17 22:02:11 +0300
committerMark Lapierre <mlapierre@gitlab.com>2019-01-17 22:02:11 +0300
commita98e7b993a8709b5a1efa116c3a0faaa402e7ac2 (patch)
tree4a486e18e119762717096a5e2236e92b2777b404
parentae0b888011c88f4b292b36fbc3d238a4a3458704 (diff)
parenta4f73241708a777117637d7671584bd255638768 (diff)
Merge branch 'review-apps-do-not-exit-when-dependable-job-fails' into 'master'
[Review Apps] Don't exit when dependable job fails See merge request gitlab-org/gitlab-ce!24469
-rwxr-xr-xscripts/review_apps/review-apps.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/review_apps/review-apps.sh b/scripts/review_apps/review-apps.sh
index 4e1dbff7b80..1ee6f502b8e 100755
--- a/scripts/review_apps/review-apps.sh
+++ b/scripts/review_apps/review-apps.sh
@@ -346,7 +346,6 @@ function wait_for_job_to_be_done() {
if [[ "${job_status}" == "failed" ]]; then
echo "The '${job_name}' failed."
- exit 1
elif [[ "${job_status}" == "manual" ]]; then
echo "The '${job_name}' is manual."
else