Yorick
869fb1a2f6
fe5509df
caused only wanted outputs to be passed to the
post-build-hook, which resulted in paths being built
without ever going into the hook.
This commit adds a (currently failing) test for this.
31 lines
1,007 B
Bash
31 lines
1,007 B
Bash
source common.sh
|
|
|
|
clearStore
|
|
|
|
rm -f $TEST_ROOT/result
|
|
|
|
export REMOTE_STORE=file:$TEST_ROOT/remote_store
|
|
echo 'require-sigs = false' >> $NIX_CONF_DIR/nix.conf
|
|
|
|
restartDaemon
|
|
|
|
if isDaemonNewer "2.13"; then
|
|
pushToStore="$PWD/push-to-store.sh"
|
|
else
|
|
pushToStore="$PWD/push-to-store-old.sh"
|
|
fi
|
|
|
|
# Build the dependencies and push them to the remote store.
|
|
nix-build -o $TEST_ROOT/result dependencies.nix --post-build-hook "$pushToStore"
|
|
# See if all outputs are passed to the post-build hook by only specifying one
|
|
export BUILD_HOOK_ONLY_OUT_PATHS=1
|
|
nix-build -o $TEST_ROOT/result-mult multiple-outputs.nix -A a.first --post-build-hook "$pushToStore"
|
|
|
|
clearStore
|
|
|
|
# Ensure that the remote store contains both the runtime and build-time
|
|
# closure of what we've just built.
|
|
nix copy --from "$REMOTE_STORE" --no-require-sigs -f dependencies.nix
|
|
nix copy --from "$REMOTE_STORE" --no-require-sigs -f dependencies.nix input1_drv
|
|
nix copy --from "$REMOTE_STORE" --no-require-sigs -f multiple-outputs.nix a^second
|