-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run every 30 mins, no rebuild, concurrency 1
- Loading branch information
1 parent
5346158
commit 102eccb
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ steps: | |
fields: | ||
- select: "Rebuild?" | ||
key: "REBUILD" | ||
default: "rebuild" | ||
default: "" | ||
required: false | ||
options: | ||
- label: "no" | ||
|
@@ -27,13 +27,15 @@ steps: | |
- wait | ||
- label: ":white_check_mark: Build docs" | ||
command: | | ||
export REBUILD="$(buildkite-agent meta-data get REBUILD --default 'rebuild' --log-level fatal)" | ||
export REBUILD="$(buildkite-agent meta-data get REBUILD --default '' --log-level fatal)" | ||
export BROKEN_LINKS="$(buildkite-agent meta-data get BROKEN_LINKS --default '' --log-level fatal)" | ||
bash .buildkite/scripts/build.sh | ||
agents: | ||
provider: "gcp" | ||
image: family/docs-ubuntu-2204 | ||
machineType: ${BUILD_MACHINE_TYPE} | ||
concurrency_group: build-docs | ||
concurrency: 1 | ||
notify: | ||
- email: "[email protected]" | ||
if: build.state == "failed" |