diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-21T12·51+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-21T12·51+0100 |
commit | 36399df0060ce3171d3afef40024f7b8448ca99e (patch) | |
tree | ab40da511b2af03602b837a282b0b07d23b40af8 /ci | |
parent | fd626d907ef8990a1e74dd0b332113e72de4a07d (diff) |
Use emojis for build, lint steps
Y'know... the important stuff
Diffstat (limited to 'ci')
-rw-r--r-- | ci/pipelines/briefcase.nix | 4 | ||||
-rw-r--r-- | ci/pipelines/socrates.nix | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ci/pipelines/briefcase.nix b/ci/pipelines/briefcase.nix index 9b09ef69b5d9..39ef3b4370f9 100644 --- a/ci/pipelines/briefcase.nix +++ b/ci/pipelines/briefcase.nix @@ -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) diff --git a/ci/pipelines/socrates.nix b/ci/pipelines/socrates.nix index ffea654daef3..14cf10e0ebcb 100644 --- a/ci/pipelines/socrates.nix +++ b/ci/pipelines/socrates.nix @@ -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) |