forgejo -> woodpecker

This commit is contained in:
Adam Stephens 2024-05-14 16:14:22 -04:00
parent ebffb583a3
commit e2ed1ccd08
No known key found for this signature in database
4 changed files with 47 additions and 32 deletions

12
justfile Normal file
View file

@ -0,0 +1,12 @@
all:
just -l
find-targets:
nix eval .#packages.aarch64-linux --apply 'builtins.attrNames' --json | jq '. | map(".#" + .) | join(" ")' -r > targets
build:
nix build --print-out-paths --keep-going $(cat targets) > outputs
cat outputs
push:
cachix -- push nixos-x13s $(cat outputs)