30c4454056
It looks like this needs to be set for the tvix pipeline to succeed. It was set to `canon` for `tvl-kit` (not sure if manually, or some autodetection previously did it for us that's not present anymore). Anyways, this sets it to how it's set in the web interface, to hopefully fix it. Change-Id: Ic3eb60e3f421fa949a84dcdaa928823ff45f679a Reviewed-on: https://cl.tvl.fyi/c/depot/+/8008 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
48 lines
1.3 KiB
HCL
48 lines
1.3 KiB
HCL
# Buildkite configuration for TVL.
|
|
|
|
terraform {
|
|
required_providers {
|
|
buildkite = {
|
|
source = "buildkite/buildkite"
|
|
}
|
|
}
|
|
|
|
backend "s3" {
|
|
endpoint = "https://objects.dc-sto1.glesys.net"
|
|
bucket = "tvl-state"
|
|
key = "terraform/tvl-buildkite"
|
|
region = "glesys"
|
|
|
|
skip_credentials_validation = true
|
|
skip_region_validation = true
|
|
skip_metadata_api_check = true
|
|
}
|
|
}
|
|
|
|
provider "buildkite" {
|
|
organization = "tvl"
|
|
}
|
|
|
|
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")
|
|
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")
|
|
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")
|
|
default_branch = "canon"
|
|
}
|