2018-08-03 18:41:56 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
clearCache
|
|
|
|
|
|
|
|
remoteRoot=$TEST_ROOT/store2
|
|
|
|
chmod -R u+w "$remoteRoot" || true
|
|
|
|
rm -rf "$remoteRoot"
|
|
|
|
|
2019-05-07 19:15:45 +00:00
|
|
|
outPath=$(nix-build --no-out-link dependencies.nix)
|
2018-08-03 18:41:56 +00:00
|
|
|
|
|
|
|
nix copy --to "ssh://localhost?store=$NIX_STORE_DIR&remote-store=$remoteRoot%3fstore=$NIX_STORE_DIR%26real=$remoteRoot$NIX_STORE_DIR" $outPath
|
|
|
|
|
|
|
|
[ -f $remoteRoot$outPath/foobar ]
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
|
|
|
|
nix copy --no-check-sigs --from "ssh://localhost?store=$NIX_STORE_DIR&remote-store=$remoteRoot%3fstore=$NIX_STORE_DIR%26real=$remoteRoot$NIX_STORE_DIR" $outPath
|
|
|
|
|
|
|
|
[ -f $outPath/foobar ]
|