We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c60b2ee commit f8279c8Copy full SHA for f8279c8
.buildkite/pipeline.yml
@@ -0,0 +1,15 @@
1
+env:
2
+ CACHE_NAME: insane
3
+
4
+steps:
5
+ - label: Set up cachix
6
+ commands:
7
+ - nix profile install nixpkgs#cachix
8
+ - cachix use "$CACHE_NAME"
9
+ - wait
10
+ - label: Nix lint
11
12
+ - nix run .#world -- lint
13
+ - label: Nix check
14
15
+ - nix run .#world -- check
flake/packages.nix
@@ -70,7 +70,7 @@
70
in
71
pkgs.writeShellApplication {
72
name = "world";
73
- runtimeInputs = with pkgs; [just nushell statix deadnix];
+ runtimeInputs = with pkgs; [just nushell statix deadnix cachix];
74
text = ''
75
just -f ${pkgs.replaceVars ../files/Justfile.template {
76
inherit upgrade build;
0 commit comments