diff options
Diffstat (limited to 'ops/buildkite/tvl.tf')
-rw-r--r-- | ops/buildkite/tvl.tf | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/ops/buildkite/tvl.tf b/ops/buildkite/tvl.tf index d5d809e4fc16..4c45909a0c36 100644 --- a/ops/buildkite/tvl.tf +++ b/ops/buildkite/tvl.tf @@ -24,22 +24,25 @@ provider "buildkite" { } resource "buildkite_pipeline" "depot" { - name = "depot" - description = "Run full CI pipeline of the depot, TVL's monorepo." - repository = "https://cl.tvl.fyi/depot" - steps = file("./steps-depot.yml") + name = "depot" + description = "Run full CI pipeline of the depot, TVL's monorepo." + repository = "https://cl.tvl.fyi/depot" + steps = file("./steps-depot.yml") + default_branch = "refs/heads/canon" } resource "buildkite_pipeline" "tvix" { - name = "tvix" - description = "Tvix, an exported subset of TVL depot" - repository = "https://code.tvl.fyi/depot.git:workspace=views/tvix.git" - steps = file("./steps-tvix.yml") + name = "tvix" + description = "Tvix, an exported subset of TVL depot" + repository = "https://code.tvl.fyi/depot.git:workspace=views/tvix.git" + steps = file("./steps-tvix.yml") + default_branch = "canon" } resource "buildkite_pipeline" "tvl_kit" { - name = "tvl-kit" - description = "TVL Kit, an exported subset of TVL depot" - repository = "https://code.tvl.fyi/depot.git:workspace=views/kit.git" - steps = file("./steps-tvl-kit.yml") + name = "tvl-kit" + description = "TVL Kit, an exported subset of TVL depot" + repository = "https://code.tvl.fyi/depot.git:workspace=views/kit.git" + steps = file("./steps-tvl-kit.yml") + default_branch = "canon" } |