all repos — website @ 313f62584d7e5b59b9322442d0ee07a7526a0324

My website

use a smaller shell for CI
Alan Pearce alan@alanpearce.eu
Fri, 28 Jun 2024 17:07:57 +0200
commit

313f62584d7e5b59b9322442d0ee07a7526a0324

parent

e29149ae9b0cd31f38beb38b0f4ea4e1599f4d93

3 files changed, 19 insertions(+), 4 deletions(-)

jump to
A ci.nix
@@ -0,0 +1,18 @@+{ pkgs ? (
+    let
+      sources = import ./npins;
+    in
+    import sources.nixpkgs { }
+  )
+}:
+pkgs.mkShell {
+  packages = with pkgs; [
+    go
+    templ
+    hyperlink
+    just
+
+    ko
+    flyctl
+  ];
+}
M justfilejustfile
@@ -1,5 +1,5 @@ #!/usr/bin/env cached-nix-shell
-#!nix-shell -i "just --justfile"
+#!nix-shell ci.nix -i "just --justfile"
 
 docker_registry := "registry.fly.io/alanpearce-eu"
 listen_address := env_var_or_default("LISTEN_ADDRESS", "::1")
M shell.nixshell.nix
@@ -21,8 +21,5 @@ hyperlink     systemfd
     just
     modd
-
-    ko
-    flyctl
   ];
 }