about summary refs log blame commit diff
path: root/ops/buildkite/default.nix
blob: 0d39bc06010d285fbd64db84c954846e30cad90c (plain) (tree)
1
2
3
4
5
6
7
                          
 
                                   


                                              
 





                                                   
 
{ 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";
  };
}