nix-gh/tests/nix-pull.sh

34 lines
679 B
Bash
Raw Normal View History

source common.sh
pullCache () {
echo "pulling cache..."
$PERL -w -I$TOP/scripts $TOP/scripts/nix-pull file://$TEST_ROOT/manifest
}
clearStore
2007-08-13 15:15:02 +02:00
clearManifests
pullCache
2006-03-01 13:51:18 +01:00
drvPath=$($nixinstantiate dependencies.nix)
outPath=$($nixstore -q $drvPath)
echo "building $outPath using substitutes..."
2006-03-01 13:51:18 +01:00
$nixstore -r $outPath
cat $outPath/input-2/bar
clearStore
2007-08-13 15:15:02 +02:00
clearManifests
pullCache
echo "building $drvPath using substitutes..."
2006-03-01 13:51:18 +01:00
$nixstore -r $drvPath
cat $outPath/input-2/bar
# Check that the derivers are set properly.
2006-03-01 13:51:18 +01:00
test $($nixstore -q --deriver "$outPath") = "$drvPath"
2006-03-01 15:26:03 +01:00
$nixstore -q --deriver $(readLink $outPath/input-2) | grep -q -- "-input-2.drv"
2007-08-13 15:15:02 +02:00
clearManifests