about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-21T17·40+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-22T22·27+0100
commit42413399630d015e74aa0e782f217dbc25ff9fe8 (patch)
tree5f84adba085482cd1f0345fb6868575afc60b8da
parent098ca0da15fa31e13c1709e57dd371c47bfdfd47 (diff)
Define Buildkite pipelines corresponding to git server hooks
I think maintaining a 1:1 correspondence with the git server hook makes sense
right now. Let's try it out!
-rw-r--r--ci/pipelines/briefcase.nix17
-rw-r--r--ci/pipelines/post-receive.nix (renamed from ci/pipelines/socrates.nix)11
-rw-r--r--ci/pipelines/pre-receive.nix11
3 files changed, 20 insertions, 19 deletions
diff --git a/ci/pipelines/briefcase.nix b/ci/pipelines/briefcase.nix
deleted file mode 100644
index 95977ccb9a3a..000000000000
--- a/ci/pipelines/briefcase.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ pkgs, ... }:
-
-let
-  pipeline.steps = [
-    {
-      key = "lint";
-      command = "${pkgs.git-secrets}/bin/git-secrets --scan-history";
-      label = ":broom: lint";
-    }
-    {
-      key = "build";
-      command = "nix-build . -I briefcase=$(pwd) --no-out-link --show-trace";
-      label = ":nix: build";
-      depends_on = "lint";
-    }
-  ];
-in pkgs.writeText "briefcase.yaml" (builtins.toJSON pipeline)
diff --git a/ci/pipelines/socrates.nix b/ci/pipelines/post-receive.nix
index b75531188e96..415f10408cc7 100644
--- a/ci/pipelines/socrates.nix
+++ b/ci/pipelines/post-receive.nix
@@ -3,6 +3,12 @@
 let
   pipeline.steps = [
     {
+      key = "build-briefcase";
+      command = "nix-build . -I briefcase=$(pwd) --no-out-link --show-trace";
+      label = ":nix: build briefcase";
+    }
+    {
+      key = "build-socrates";
       command = ''
         nix-build '<nixpkgs/nixos>' \
           -I briefcase="$(pwd)" \
@@ -12,7 +18,8 @@ let
           --no-out-link \
           --show-trace
       '';
-      label = ":nix: build";
+      label = ":nix: build socrates";
+      depends_on = "build-briefcase";
     }
   ];
-in pkgs.writeText "socrates.yml" (builtins.toJSON pipeline)
+in pkgs.writeText "pipeline.yaml" (builtins.toJSON pipeline)
diff --git a/ci/pipelines/pre-receive.nix b/ci/pipelines/pre-receive.nix
new file mode 100644
index 000000000000..9a30f271ed45
--- /dev/null
+++ b/ci/pipelines/pre-receive.nix
@@ -0,0 +1,11 @@
+{ pkgs, ... }:
+
+let
+  pipeline.steps = [
+    {
+      key = "lint";
+      command = "${pkgs.git-secrets}/bin/git-secrets --scan-history";
+      label = ":broom: lint";
+    }
+  ];
+in pkgs.writeText "pipeline.yaml" (builtins.toJSON pipeline)