Use nix copy to upload to mn4, fixes #15
This commit is contained in:
parent
cff653d164
commit
fa1f06ce31
17
bsc/nix/upload.sh
Executable file
17
bsc/nix/upload.sh
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# This post build hook sends the closure of the just built derivation to the
|
||||||
|
# target machine. In our case this is the MareNostrum4 cluster.
|
||||||
|
|
||||||
|
# set -e fails as the profile runs some erroring programs
|
||||||
|
# We need the profile to load nix in the $PATH
|
||||||
|
. /etc/profile
|
||||||
|
|
||||||
|
set -eu
|
||||||
|
set -f # disable globbing
|
||||||
|
export IFS=' '
|
||||||
|
nixroot=/gpfs/projects/bsc15/nix
|
||||||
|
store=$nixroot/nix/store
|
||||||
|
target=ssh://mn
|
||||||
|
|
||||||
|
nix copy --to $target $OUT_PATHS
|
Loading…
Reference in New Issue
Block a user