ci: prevent nix garbage collection
Flake checks / Check (pull_request) Successful in 5m36s Details

pull/152/head
teutat3s 2024-04-23 16:00:16 +02:00
parent fa9ce9d435
commit 60aef1d038
Signed by: teutat3s
GPG Key ID: 4FA1D3FA524F22C1
1 changed files with 4 additions and 3 deletions

View File

@ -48,13 +48,14 @@ jobs:
- name: Run flake checks
run: |
nix --print-build-logs --verbose --accept-flake-config --access-tokens '' flake check
# Prevent cache garbage collection
# Prevent cache garbage collection by creating GC roots
for target in $(nix flake show --json --all-systems | jq '
.["nixosConfigurations"] |
to_entries[] |
.key
' | tr -d '"'
); do
nix profile install --profile "/nix/var/nix/profiles/$target" ".#nixosConfigurations.${target}.config.system.build.toplevel"
nix --print-build-logs --verbose --accept-flake-config --access-tokens '' \
build --out-link ./result-$target ".#nixosConfigurations.${target}.config.system.build.toplevel"
done
nix --print-build-logs --verbose --accept-flake-config --access-tokens '' flake check