Skip to content

Commit

Permalink
Add crubit pipeline to terraform config
Browse files Browse the repository at this point in the history
Progress towards bazelbuild#1372
  • Loading branch information
fweikert committed Jun 2, 2022
1 parent 29af81d commit 3089e72
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions buildkite/terraform/bazel/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1900,3 +1900,20 @@ resource "buildkite_pipeline" "bazel-arm64" {
}
}

resource "buildkite_pipeline" "crubit" {
name = "crubit"
repository = "https://github.com/google/crubit.git"
steps = templatefile("pipeline.yml.tpl", { envs = {}, steps = { commands = ["curl -sS \"https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?$(date +%s)\" -o bazelci.py", "python3.6 bazelci.py project_pipeline | tee /dev/tty | buildkite-agent pipeline upload"] } })
default_branch = "main"
team = [{ access_level = "MANAGE_BUILD_AND_READ", slug = "googlers" }, { access_level = "BUILD_AND_READ", slug = "bazel" }]
provider_settings {
trigger_mode = "code"
build_pull_requests = true
skip_pull_request_builds_for_existing_commits = true
build_pull_request_forks = true
prefix_pull_request_fork_branch_names = true
build_branches = true
publish_commit_status = true
separate_pull_request_statuses = true
}
}

0 comments on commit 3089e72

Please sign in to comment.