Files
continuwuity/bin/nix-build-and-cache
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.1 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
set -eo pipefail
# The first argument must be the desired installable
INSTALLABLE="$1"
# Build the installable and forward any other arguments too
nix build -L "$@"
2024-03-02 10:59:27 -05:00
if [ ! -z "$ATTIC_TOKEN" ]; then
2024-03-05 21:42:17 -05:00
nix run --inputs-from . attic -- \
login \
conduit \
"${ATTIC_ENDPOINT:-https://attic.kennel.juneis.dog/conduit}" \
"$ATTIC_TOKEN"
2024-03-05 21:42:17 -05:00
# Push the target installable and its build dependencies
nix run --inputs-from . attic -- \
push \
conduit \
"$(nix path-info "$INSTALLABLE" --derivation)" \
"$(nix path-info "$INSTALLABLE")"
2024-02-14 16:33:41 -05:00
# push to "conduwuit" too
2024-03-05 21:42:17 -05:00
nix run --inputs-from . attic -- \
login \
conduwuit \
"${ATTIC_ENDPOINT:-https://attic.kennel.juneis.dog/conduwuit}" \
2024-02-14 16:33:41 -05:00
"$ATTIC_TOKEN"
2024-03-05 21:42:17 -05:00
# Push the target installable and its build dependencies
nix run --inputs-from . attic -- \
push \
conduwuit \
"$(nix path-info "$INSTALLABLE" --derivation)" \
2024-02-14 16:33:41 -05:00
"$(nix path-info "$INSTALLABLE")"
else
echo "\$ATTIC_TOKEN is unset, skipping uploading to the binary cache"
fi