2020-08-07 19:09:26 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
source common.sh
|
|
|
|
|
2020-08-22 20:44:47 +00:00
|
|
|
drv=$(nix-instantiate --experimental-features ca-derivations ./content-addressed.nix -A root --arg seed 1)
|
2020-08-07 19:09:26 +00:00
|
|
|
nix --experimental-features 'nix-command ca-derivations' show-derivation --derivation "$drv" --arg seed 1
|
|
|
|
|
2020-08-22 20:44:47 +00:00
|
|
|
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)
|
2020-08-28 22:03:54 +00:00
|
|
|
local out2=$(nix-build "${commonArgs[@]}" --arg seed 2 "${extraArgs[@]}")
|
2020-08-22 20:44:47 +00:00
|
|
|
test $out1 == $out2
|
|
|
|
}
|
2020-08-07 19:09:26 +00:00
|
|
|
|
2020-08-22 20:44:47 +00:00
|
|
|
testDerivation root
|
2020-08-28 22:03:54 +00:00
|
|
|
# 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)
|
2020-08-22 20:44:47 +00:00
|
|
|
testDerivation dependent
|
|
|
|
testDerivation transitivelyDependent
|