forked from DGNum/infrastructure
chore(scripts): Cleanup of old caching script
This commit is contained in:
parent
d05c003fd6
commit
7bdc70632c
2 changed files with 0 additions and 21 deletions
|
@ -33,7 +33,6 @@ let
|
||||||
"check-deployment"
|
"check-deployment"
|
||||||
"launch-vm"
|
"launch-vm"
|
||||||
"list-nodes"
|
"list-nodes"
|
||||||
"push-to-nix-cache"
|
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
|
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
set -e
|
|
||||||
set -u
|
|
||||||
set -o pipefail
|
|
||||||
|
|
||||||
ENDPOINT=${STORE_ENDPOINT:-https://tvix-cache.dgnum.eu/infra-singing/}
|
|
||||||
|
|
||||||
cat > .netrc << EOF
|
|
||||||
default
|
|
||||||
login $STORE_USER
|
|
||||||
password $STORE_PASSWORD
|
|
||||||
EOF
|
|
||||||
|
|
||||||
@colmena@/bin/colmena eval -E "{ nodes, lib, ... }: builtins.map (v: nodes.\${v}.config.system.build.toplevel.drvPath) ${NODES:-(builtins.attrNames nodes)}" |\
|
|
||||||
@jq@/bin/jq -r '.[]' |\
|
|
||||||
xargs nix-store -q -R --include-outputs |\
|
|
||||||
sed '/\.drv$/d' |\
|
|
||||||
tee uploaded.txt |\
|
|
||||||
xargs nix copy --to "$ENDPOINT?compression=none" --extra-experimental-features nix-command --netrc-file ./.netrc
|
|
||||||
|
|
||||||
rm .netrc
|
|
Loading…
Reference in a new issue