diff options
author | Kane York <kanepyork@gmail.com> | 2020-07-17T04·27-0700 |
---|---|---|
committer | Kane York <rikingcoding@gmail.com> | 2020-07-17T22·55+0000 |
commit | 4dd236be53536e851d2dcb7fab205e999970517f (patch) | |
tree | 29224e85d75aef953f8dee3766bbbfef67aee479 /ops | |
parent | cf3418403863d8b733d9784126c8e2e5928ba34a (diff) |
feat(ci): run buf check lint in CI r/1366
Breaking change detection will run but not enforce. Emoji of water buffalo was chosen by @pedge fiat in the bufbuild slack. Change-Id: Ie292f2bfddc0e3bc512e4a138c0b5d0fa2603bad Reviewed-on: https://cl.tvl.fyi/c/depot/+/1247 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'ops')
-rw-r--r-- | ops/pipelines/depot.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ops/pipelines/depot.nix b/ops/pipelines/depot.nix index 3c9ee6b2143f..ad5a3faabe31 100644 --- a/ops/pipelines/depot.nix +++ b/ops/pipelines/depot.nix @@ -17,5 +17,9 @@ let command = "nix-build -A ciBuilds.__allTargets --show-trace"; label = ":duck:"; } + { + command = "${depot.nix.bufCheck}/bin/ci-buf-check"; + label = ":water_buffalo:"; + } ]; in writeText "depot.yaml" (toJSON pipeline) |