set -o errexit set -o nounset set -o pipefail shopt -s lastpipe system_type="$(colmena eval -E "{ nodes, ... }: nodes.${BUILD_NODE}.config.deployment.systemType")" # Get rid of surrounding quotes. system_type="${system_type%\"}" system_type="${system_type#\"}" case "$system_type" in nixos) toplevel_path="config.system.build.toplevel" ;; zyxel-nwa50ax) toplevel_path="config.system.outputs.zyxel-nwa-fit" ;; *) echo "Unsupported system type '$system_type' for caching; add an entry in 'scripts/cache-node.sh'" exit 1 ;; esac tmate -F drv=$(colmena eval --instantiate -E "{ nodes, ... }: nodes.${BUILD_NODE}.${toplevel_path}" --show-trace) # Build the derivation and send it to the great beyond nix-store --query --requisites --force-realise --include-outputs "$drv" | grep -v '.*\.drv' >paths.txt if [ "$STORE_PASSWORD" == "" ]; then echo "No password given for the remote cache, uploading cannot take place." exit 0 fi cat <.netrc default login $STORE_USER password $STORE_PASSWORD EOF nix copy \ --extra-experimental-features nix-command \ --to "$STORE_ENDPOINT?compression=none" \ --netrc-file .netrc \ "$(nix-store --realise "$drv")" rm .netrc