about summary refs log blame commit diff
path: root/users/wpcarro/ci/pipelines/post-receive.nix
blob: b69ee28af3e6aa97bd53b48724f78d8b243259c4 (plain) (tree)
1
2
3
4
5
6
7
8
                     

   
                                 
                                                       
 

                    




                                                                     
                         






                                 

                                    
                                       
                                  

     
                                                   
{ pkgs, depot, ... }:

let
  inherit (builtins) path toJSON;
  inherit (depot.users.wpcarro.emacs) initEl runScript;

  pipeline.steps = [
    {
      key = "lint-secrets";
      command = "${pkgs.git-secrets}/bin/git-secrets --scan-history";
      label = ":broom: lint secrets";
    }
    {
      key = "init-emacs";
      command = let
        scriptEl = path {
          path = ./script.el;
          name = "script.el";
        };
        runScriptEl = runScript {
          script = scriptEl;
        };
      in "${runScriptEl} ${initEl}";
      label = ":gnu: initialize Emacs";
      depends_on = "lint-secrets";
    }
  ];
in pkgs.writeText "pipeline.yaml" (toJSON pipeline)