Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions buildkite/terraform/bazel/pipeline.yml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ steps:
%{~ if try(steps.priority, null) != null ~}
priority: ${steps.priority}
%{~ endif ~}
%{~ if try(steps.skip_checkout, false) ~}
checkout:
skip: true
%{~ endif ~}
agents:
- "queue=default"%{ if try(length(steps.artifact_paths), 0) > 0 }
artifact_paths:%{ for artifact_path in steps.artifact_paths }
Expand Down
1 change: 1 addition & 0 deletions buildkite/terraform/bazel/pipelines_misc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ resource "buildkite_pipeline" "gerrit" {
steps = templatefile("pipeline.yml.tpl", {
envs = {},
steps = {
skip_checkout = true
commands = [
"curl -sS \"https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?$(date +%s)\" -o bazelci.py",
"bash -c 'set -euo pipefail; python3 bazelci.py project_pipeline --http_config=https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/pipelines/gerrit.yml?$(date +%s) | tee /dev/tty | buildkite-agent pipeline upload'"
Expand Down
Loading