tvl-depot/ops/buildkite/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
313 B
Nix
Raw Normal View History

{ depot, lib, pkgs, ... }:
depot.nix.readTree.drvTargets rec {
terraform = pkgs.terraform.withPlugins (p: [
p.buildkite
]);
validate = depot.tools.checks.validateTerraform {
inherit terraform;
name = "buildkite";
src = lib.cleanSource ./.;
env.BUILDKITE_API_TOKEN = "ci-dummy";
};
}