2020-06-27 18:14:58 +02:00
|
|
|
# This file configures the primary build pipeline used for the
|
|
|
|
# top-level list of depot targets.
|
2021-12-28 11:20:54 +01:00
|
|
|
{ depot, ... }:
|
2020-06-27 18:14:58 +02:00
|
|
|
|
|
|
|
let
|
2020-08-27 02:05:45 +02:00
|
|
|
# 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:";
|
|
|
|
};
|
2021-12-28 11:38:03 +01:00
|
|
|
|
|
|
|
# Formatting check which validates that all supported auto-formatted
|
|
|
|
# files are formatted correctly. See //tools/depotfmt for details.
|
|
|
|
depotfmtCheck = {
|
|
|
|
command = "${depot.tools.depotfmt.check}";
|
|
|
|
label = ":evergreen_tree: (tools/depotfmt)";
|
|
|
|
};
|
2021-12-28 11:20:54 +01:00
|
|
|
in depot.nix.buildkite.mkPipeline {
|
|
|
|
headBranch = "refs/heads/canon";
|
|
|
|
drvTargets = depot.ci.targets;
|
|
|
|
skipIfBuilt = true;
|
2021-12-28 11:38:03 +01:00
|
|
|
additionalSteps = [ depotfmtCheck protoCheck ];
|
2021-12-28 11:20:54 +01:00
|
|
|
}
|