diff options
author | sterni <sternenseemann@systemli.org> | 2024-03-14T22·13+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-03-15T11·55+0000 |
commit | d5b6704d3d82c1c1acf45aba71ab1a337f94defd (patch) | |
tree | 7d414d82e6d62b62ef22b85685a8dee4ba452700 /ops | |
parent | 5fccbe5939b376d56690cdf8ebcab61f7e852d86 (diff) |
chore: move protoCheck into extraStep of //nix/bufCheck r/7698
Resolves b/385. I have a feeling bufCheck should be moved to //tools as well. Change-Id: I2a2b63d135a2f8bcc982aa1138ff3213c6012f20 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11152 Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'ops')
-rw-r--r-- | ops/pipelines/depot.nix | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ops/pipelines/depot.nix b/ops/pipelines/depot.nix index 5f02e7edfbb8..5eff62267168 100644 --- a/ops/pipelines/depot.nix +++ b/ops/pipelines/depot.nix @@ -3,18 +3,9 @@ { depot, pkgs, externalArgs, ... }: let - # Protobuf check step which validates that changes to .proto files - # between revisions don't cause backwards-incompatible or otherwise - # flawed changes. - protoCheck = { - command = "${depot.nix.bufCheck}/bin/ci-buf-check"; - label = ":water_buffalo: protoCheck"; - }; - pipeline = depot.nix.buildkite.mkPipeline { headBranch = "refs/heads/canon"; drvTargets = depot.ci.targets; - additionalSteps = [ protoCheck ]; parentTargetMap = if (externalArgs ? parentTargetMap) |