Skip to content

Commit f8279c8

Browse files
committed
feat: add buildkite pipeline
1 parent c60b2ee commit f8279c8

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.buildkite/pipeline.yml

+15
Original file line numberDiff line numberDiff line change
@@ -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+
commands:
12+
- nix run .#world -- lint
13+
- label: Nix check
14+
commands:
15+
- nix run .#world -- check

flake/packages.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
in
7171
pkgs.writeShellApplication {
7272
name = "world";
73-
runtimeInputs = with pkgs; [just nushell statix deadnix];
73+
runtimeInputs = with pkgs; [just nushell statix deadnix cachix];
7474
text = ''
7575
just -f ${pkgs.replaceVars ../files/Justfile.template {
7676
inherit upgrade build;

0 commit comments

Comments
 (0)