We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f5bc9 commit 481bb87Copy full SHA for 481bb87
.buildkite/build_pr_pipeline.yml
@@ -14,10 +14,10 @@ steps:
14
- command: ".buildkite/scripts/build_pr_commit_status.sh || true"
15
label: "teardown"
16
command: |
17
+ status='failure'
18
if [ $(buildkite-agent step get "outcome" --step "build-pr") == "passed" ]; then
- .buildkite/scripts/build_pr_commit_status.sh 'success' 'Build finished'
19
- else
20
- .buildkite/scripts/build_pr_commit_status.sh 'failure' 'Build finished'
+ status='success'
21
fi
+ .buildkite/scripts/build_pr_commit_status.sh $status 'Build finished'
22
depends_on:
23
- step: "build-pr"
0 commit comments