Skip to content

Commit 2c8b9d6

Browse files
committed
Do not fail the build on teardown failures
1 parent da0d722 commit 2c8b9d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.buildkite/build_pr_pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
steps:
22
- key: "build-pr-setup"
33
label: "setup"
4-
command: .buildkite/scripts/build_pr_setup.sh
4+
command: ".buildkite/scripts/build_pr_setup.sh"
55
- key: "build-pr"
66
label: ":hammer: Build docs PR"
7-
command: .buildkite/scripts/build_pr.sh
7+
command: ".buildkite/scripts/build_pr.sh"
88
depends_on:
99
- step: build-pr-setup
1010
allow_failure: true
1111
agents:
1212
provider: "gcp"
1313
image: family/docs-ubuntu-2204
14-
- command: .buildkite/scripts/build_pr_teardown.sh
14+
- command: ".buildkite/scripts/build_pr_teardown.sh || true"
1515
label: "teardown"
1616
depends_on:
1717
- step: "build-pr"

0 commit comments

Comments
 (0)