Use emojis for build, lint steps

Y'know... the important stuff
This commit is contained in:
William Carroll 2020-08-21 13:51:47 +01:00
parent fd626d907e
commit 36399df006
2 changed files with 3 additions and 3 deletions

View file

@ -4,11 +4,11 @@ let
pipeline.steps = [
{
command = "${pkgs.git-secrets}/bin/git-secrets --scan-history";
label = ":briefcase: Briefcase [lint]";
label = ":broom: lint";
}
{
command = "nix-build . -I briefcase=$(pwd) --no-out-link --show-trace";
label = ":briefcase: Briefcase [build]";
label = ":hammer: build";
}
];
in pkgs.writeText "briefcase.yaml" (builtins.toJSON pipeline)

View file

@ -12,7 +12,7 @@ let
--no-out-link \
--show-trace
'';
label = ":laptop: Socrates [build]";
label = ":hammer: build";
}
];
in pkgs.writeText "socrates.yml" (builtins.toJSON pipeline)