blob: 39ef3b4370f9382a3231b2836b5ef5aedfadad4f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs, ... }:
let
pipeline.steps = [
{
command = "${pkgs.git-secrets}/bin/git-secrets --scan-history";
label = ":broom: lint";
}
{
command = "nix-build . -I briefcase=$(pwd) --no-out-link --show-trace";
label = ":hammer: build";
}
];
in pkgs.writeText "briefcase.yaml" (builtins.toJSON pipeline)
|