blob: 5997a432f1d153805283a2bf67421ea8baec619f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env bash
source common.sh
drv=$(nix-instantiate --experimental-features ca-derivations ./content-addressed.nix -A root --arg seed 1)
nix --experimental-features 'nix-command ca-derivations' show-derivation --derivation "$drv" --arg seed 1
testDerivation () {
local derivationPath=$1
local commonArgs=("--experimental-features" "ca-derivations" "./content-addressed.nix" "-A" "$derivationPath" "--no-out-link")
local out1=$(nix-build "${commonArgs[@]}" --arg seed 1)
local out2=$(nix-build "${commonArgs[@]}" --arg seed 2 "${extraArgs[@]}")
test $out1 == $out2
}
testDerivation root
# The seed only changes the root derivation, and not it's output, so the
# dependent derivations should only need to be built once.
extaArgs=(-j0)
testDerivation dependent
testDerivation transitivelyDependent
|