bscpkgs/garlic/pp/fetch.nix

59 lines
1.2 KiB
Nix
Raw Normal View History

2020-10-16 00:48:50 +08:00
{
stdenv
, rsync
, openssh
, nix
, curl
, garlicTools
}:
{
sshHost
, prefix
2020-10-16 21:53:28 +08:00
, experimentStage
, trebuchetStage
2020-10-16 00:48:50 +08:00
, garlicTemp
# We only fetch the config, stdout and stderr by default
, fetchAll ? false
2020-10-16 00:48:50 +08:00
}:
with garlicTools;
let
experimentName = baseNameOf (toString experimentStage);
rsyncFilter = if (fetchAll) then "" else ''
--include='*/*/garlic_config.json' \
--include='*/*/std*.log' \
--include='*/*/*/std*.log' \
--exclude='*/*/*/*' '';
2020-10-16 00:48:50 +08:00
in
stdenv.mkDerivation {
name = "fetch";
preferLocalBuild = true;
buildInputs = [ rsync openssh curl ];
phases = [ "installPhase" ];
installPhase = ''
cat > $out << EOF
#!/bin/sh -e
mkdir -p ${garlicTemp}
export PATH=${rsync}/bin:${openssh}/bin:${nix}/bin
rsync -av \
2020-10-16 21:53:28 +08:00
--copy-links \
${rsyncFilter} \
2020-10-16 00:48:50 +08:00
'${sshHost}:${prefix}/${experimentName}' ${garlicTemp}
res=\$(nix-build -E '(with import ./default.nix; garlic.pp.getExpResult { \
2020-10-16 21:53:28 +08:00
experimentStage = "${experimentStage}"; \
trebuchetStage = "${trebuchetStage}"; \
garlicTemp = "${garlicTemp}"; \
})')
2020-10-16 00:48:50 +08:00
echo "The results for experiment ${experimentName} are at:"
echo " \$res"
EOF
chmod +x $out
'';
}