This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: only build uncached packages

+3 -1
+1 -1
.github/workflows/ci.yml
··· 16 16 id: list 17 17 run: | 18 18 eval "$(nix print-dev-env .#ci)" 19 - matrix="$(nix eval .#checks.x86_64-linux --json --apply builtins.attrNames)" 19 + matrix=$(nix-eval-jobs --flake .#checks.x86_64-linux --check-cache-status | jq -sc '[.[]|select(.isCached|not).attr]') 20 20 echo "matrix=$matrix" >> "$GITHUB_OUTPUT" 21 21 22 22 build:
+2
flake/shell.nix
··· 8 8 make-shells.ci = { 9 9 packages = with pkgs; [ 10 10 attic-client 11 + jq 12 + nix-eval-jobs 11 13 nix-fast-build 12 14 ]; 13 15 };