4b1bd822ac
This enables nix to correctly report what will be fetched in the case that everything is a cache hit. Note however that if an intermediate build of something which is not cached could still cause products to end up being substituted if the intermediate build results in a CA path which is in the cache. Fixes #8615. Signed-off-by: Peter Waller <p@pwaller.net>
29 lines
583 B
Makefile
29 lines
583 B
Makefile
ca-tests := \
|
|
$(d)/build-with-garbage-path.sh \
|
|
$(d)/build.sh \
|
|
$(d)/build-cache.sh \
|
|
$(d)/concurrent-builds.sh \
|
|
$(d)/derivation-json.sh \
|
|
$(d)/duplicate-realisation-in-closure.sh \
|
|
$(d)/gc.sh \
|
|
$(d)/import-derivation.sh \
|
|
$(d)/new-build-cmd.sh \
|
|
$(d)/nix-copy.sh \
|
|
$(d)/nix-run.sh \
|
|
$(d)/nix-shell.sh \
|
|
$(d)/post-hook.sh \
|
|
$(d)/recursive.sh \
|
|
$(d)/repl.sh \
|
|
$(d)/selfref-gc.sh \
|
|
$(d)/signatures.sh \
|
|
$(d)/substitute.sh \
|
|
$(d)/why-depends.sh
|
|
|
|
install-tests-groups += ca
|
|
|
|
clean-files += \
|
|
$(d)/config.nix
|
|
|
|
test-deps += \
|
|
tests/ca/config.nix
|