diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-01-12 06:10:31 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-01-12 06:10:31 +0000 |
commit | 38780f3d2f18d9e07fe3e7427ccc964de267dbb4 (patch) | |
tree | 8150ecea0389ae46de50b496f95f4ee6a48e8d36 /scripts/utils.sh | |
parent | 6965dc27dc7338316932271394fd49efaef1ea46 (diff) | |
download | gitlab-ce-38780f3d2f18d9e07fe3e7427ccc964de267dbb4.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts/utils.sh')
-rw-r--r-- | scripts/utils.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/utils.sh b/scripts/utils.sh index 6747efa73d7..c598afc4582 100644 --- a/scripts/utils.sh +++ b/scripts/utils.sh @@ -89,12 +89,12 @@ function echosuccess() { function fail_pipeline_early() { local dont_interrupt_me_job_id - dont_interrupt_me_job_id=$(scripts/api/get_job_id --job-query "scope=success" --job-name "dont-interrupt-me") + dont_interrupt_me_job_id=$(scripts/api/get_job_id.rb --job-query "scope=success" --job-name "dont-interrupt-me") if [[ -n "${dont_interrupt_me_job_id}" ]]; then echoinfo "This pipeline cannot be interrupted due to \`dont-interrupt-me\` job ${dont_interrupt_me_job_id}" else echoinfo "Failing pipeline early for fast feedback due to test failures in rspec fail-fast." - scripts/api/cancel_pipeline + scripts/api/cancel_pipeline.rb fi } |