From d8583088b868b97ea58f3763c9c99b3ba552ecea Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 7 Jun 2022 09:34:12 +0000 Subject: feat(tvl-kit): Expose //tools/checks in tvl-kit This makes CI utility functions available in TVL kit. For now this is only the Terraform check, but said check has come up in other repos before so it's useful to centralise here (and we might add more!) Change-Id: I18acb19fc3407650ab9bad53dfba022dda498c07 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5858 Autosubmit: tazjin Tested-by: BuildkiteCI Reviewed-by: asmundo --- views/kit/README.md | 1 + views/kit/default.nix | 1 + views/kit/workspace.josh | 1 + 3 files changed, 3 insertions(+) diff --git a/views/kit/README.md b/views/kit/README.md index c7319ef419..85c05ed8a1 100644 --- a/views/kit/README.md +++ b/views/kit/README.md @@ -13,6 +13,7 @@ tooling, currently comprising of: corresponding to the physical layout of a repository. * `besadii`: Configurable Gerrit/Buildkite integration hook. * `magrathea`: Command-line tool for working with TVL-style monorepos +* `checks`: Collection of useful CI checks for Buildkite It can be accessed via git by cloning it as such: diff --git a/views/kit/default.nix b/views/kit/default.nix index 47c6088a46..b2ff2a595f 100644 --- a/views/kit/default.nix +++ b/views/kit/default.nix @@ -25,6 +25,7 @@ pkgs.lib.fix (self: { depot.nix.readTree = self.readTree; }; + checks = import ./checks { inherit pkgs; }; lazy-deps = import ./lazy-deps { inherit pkgs; }; magrathea = import ./magrathea { inherit pkgs; }; readTree = import ./readTree { }; diff --git a/views/kit/workspace.josh b/views/kit/workspace.josh index bdf5503397..202dee350d 100644 --- a/views/kit/workspace.josh +++ b/views/kit/workspace.josh @@ -11,3 +11,4 @@ besadii = :/ops/besadii ::sources/ ] magrathea = :/tools/magrathea +checks = :/tools/checks -- cgit 1.4.1