about summary refs log tree commit diff
path: root/ci
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-21T12·51+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-21T12·51+0100
commit36399df0060ce3171d3afef40024f7b8448ca99e (patch)
treeab40da511b2af03602b837a282b0b07d23b40af8 /ci
parentfd626d907ef8990a1e74dd0b332113e72de4a07d (diff)
Use emojis for build, lint steps
Y'know... the important stuff
Diffstat (limited to 'ci')
-rw-r--r--ci/pipelines/briefcase.nix4
-rw-r--r--ci/pipelines/socrates.nix2
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)