mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2024-11-26 16:33:44 +00:00
620bfacc30
from https://gitlab.com/famedly/conduit/-/merge_requests/569 Signed-off-by: strawberry <strawberry@puppygock.gay>
32 lines
834 B
Bash
32 lines
834 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
# The first argument must be the desired installable
|
|
INSTALLABLE="$1"
|
|
|
|
# Build the installable and forward any other arguments too
|
|
nix build "$@"
|
|
|
|
if [ ! -z ${ATTIC_TOKEN+x} ]; then
|
|
|
|
nix run --inputs-from . attic -- login \
|
|
conduit \
|
|
https://nix.computer.surgery/conduit \
|
|
"$ATTIC_TOKEN"
|
|
|
|
push_args=(
|
|
# Attic and its build dependencies
|
|
"$(nix path-info --inputs-from . attic)"
|
|
"$(nix path-info --inputs-from . attic --derivation)"
|
|
|
|
# The target installable and its build dependencies
|
|
"$(nix path-info "$INSTALLABLE" --derivation)"
|
|
"$(nix path-info "$INSTALLABLE")"
|
|
)
|
|
|
|
nix run --inputs-from . attic -- push conduit "${push_args[@]}"
|
|
else
|
|
echo "\$ATTIC_TOKEN is unset, skipping uploading to the binary cache"
|
|
fi
|