diff options
Diffstat (limited to 'ci/pipelines/post-receive.nix')
-rw-r--r-- | ci/pipelines/post-receive.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/pipelines/post-receive.nix b/ci/pipelines/post-receive.nix index 415f10408cc7..3f14dfade557 100644 --- a/ci/pipelines/post-receive.nix +++ b/ci/pipelines/post-receive.nix @@ -3,9 +3,15 @@ let pipeline.steps = [ { + key = "lint-secrets"; + command = "${pkgs.git-secrets}/bin/git-secrets --scan-history"; + label = ":broom: lint secrets"; + } + { key = "build-briefcase"; command = "nix-build . -I briefcase=$(pwd) --no-out-link --show-trace"; label = ":nix: build briefcase"; + depends_on = "lint-secrets"; } { key = "build-socrates"; |