Skip to content
代码片段 群组 项目
提交 7d981a94 编辑于 作者: Albert Salim's avatar Albert Salim
浏览文件

Fix script to fail pipeline early

- Check for "null" value in `get_job_id`
上级 961005be
No related branches found
No related tags found
无相关合并请求
...@@ -110,7 +110,7 @@ function get_job_id() { ...@@ -110,7 +110,7 @@ function get_job_id() {
let "page++" let "page++"
done done
if [[ "${job_id}" == "" ]]; then if [[ "${job_id}" == "null" ]]; then # jq prints "null" for non-existent attribute
echoerr "The '${job_name}' job ID couldn't be retrieved!" echoerr "The '${job_name}' job ID couldn't be retrieved!"
else else
echoinfo "The '${job_name}' job ID is ${job_id}" echoinfo "The '${job_name}' job ID is ${job_id}"
...@@ -142,7 +142,7 @@ function fail_pipeline_early() { ...@@ -142,7 +142,7 @@ function fail_pipeline_early() {
local dont_interrupt_me_job_id local dont_interrupt_me_job_id
dont_interrupt_me_job_id=$(get_job_id 'dont-interrupt-me' 'scope=success') dont_interrupt_me_job_id=$(get_job_id 'dont-interrupt-me' 'scope=success')
if [[ "${dont_interrupt_me_job_id}" != "" ]]; then 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}" echoinfo "This pipeline cannot be interrupted due to \`dont-interrupt-me\` job ${dont_interrupt_me_job_id}"
else else
echoinfo "Failing pipeline early for fast feedback due to test failures in rspec fail-fast." echoinfo "Failing pipeline early for fast feedback due to test failures in rspec fail-fast."
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册