2020-08-07 22:09:26 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
source common.sh
|
|
|
|
|
2020-09-04 01:14:21 +03:00
|
|
|
drv=$(nix-instantiate --experimental-features ca-derivations ./content-addressed.nix -A rootCA --arg seed 1)
|
2020-08-07 22:09:26 +03:00
|
|
|
nix --experimental-features 'nix-command ca-derivations' show-derivation --derivation "$drv" --arg seed 1
|
|
|
|
|
2020-08-22 23:44:47 +03:00
|
|
|
testDerivation () {
|
|
|
|
local derivationPath=$1
|
|
|
|
local commonArgs=("--experimental-features" "ca-derivations" "./content-addressed.nix" "-A" "$derivationPath" "--no-out-link")
|
2020-09-04 01:44:56 +03:00
|
|
|
local out1 out2
|
2020-09-04 04:17:38 +03:00
|
|
|
out1=$(nix-build "${commonArgs[@]}" --arg seed 1)
|
2020-09-04 01:44:56 +03:00
|
|
|
out2=$(nix-build "${commonArgs[@]}" --arg seed 2 "${secondSeedArgs[@]}")
|
|
|
|
test "$out1" == "$out2"
|
2020-08-22 23:44:47 +03:00
|
|
|
}
|
2020-08-07 22:09:26 +03:00
|
|
|
|
2020-09-04 01:44:56 +03:00
|
|
|
testDerivation rootCA
|
2020-08-29 01:03:54 +03:00
|
|
|
# The seed only changes the root derivation, and not it's output, so the
|
|
|
|
# dependent derivations should only need to be built once.
|
2020-09-04 01:44:56 +03:00
|
|
|
secondSeedArgs=(-j0)
|
|
|
|
# Don't directly build depenentCA, that way we'll make sure we dodn't rely on
|
|
|
|
# dependent derivations always being already built.
|
|
|
|
#testDerivation dependentCA
|
|
|
|
testDerivation transitivelyDependentCA
|
2020-09-17 14:36:58 +03:00
|
|
|
|
|
|
|
nix-instantiate --experimental-features ca-derivations ./content-addressed.nix -A rootCA --arg seed 5
|
|
|
|
nix-collect-garbage --experimental-features ca-derivations --option keep-derivations true
|