ci: push attic to binary cache, update nix script
This commit is contained in:
parent
3b7c001350
commit
0b217232ac
2 changed files with 15 additions and 7 deletions
|
@ -49,6 +49,9 @@ ci:
|
||||||
stage: ci
|
stage: ci
|
||||||
image: nixos/nix:2.20.4
|
image: nixos/nix:2.20.4
|
||||||
script:
|
script:
|
||||||
|
# Cache attic client
|
||||||
|
- ./bin/nix-build-and-cache --inputs-from . attic
|
||||||
|
|
||||||
# Cache the inputs required for the devShell
|
# Cache the inputs required for the devShell
|
||||||
- ./bin/nix-build-and-cache .#devShells.x86_64-linux.default.inputDerivation
|
- ./bin/nix-build-and-cache .#devShells.x86_64-linux.default.inputDerivation
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,13 @@
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
# The first argument must be the desired installable
|
# Build the installable and forward any other arguments too. Also, use
|
||||||
INSTALLABLE="$1"
|
# nix-output-monitor instead if it's available.
|
||||||
|
if command -v nom &> /dev/null; then
|
||||||
# Build the installable and forward any other arguments too
|
nom build "$@"
|
||||||
nix build "$@"
|
else
|
||||||
|
nix build "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -z ${ATTIC_TOKEN+x} ]; then
|
if [ ! -z ${ATTIC_TOKEN+x} ]; then
|
||||||
nix run --inputs-from . attic -- \
|
nix run --inputs-from . attic -- \
|
||||||
|
@ -15,12 +17,15 @@ if [ ! -z ${ATTIC_TOKEN+x} ]; then
|
||||||
"${ATTIC_ENDPOINT:-https://attic.conduit.rs/conduit}" \
|
"${ATTIC_ENDPOINT:-https://attic.conduit.rs/conduit}" \
|
||||||
"$ATTIC_TOKEN"
|
"$ATTIC_TOKEN"
|
||||||
|
|
||||||
|
readarray -t outputs < <(nix path-info "$@")
|
||||||
|
readarray -t derivations < <(nix path-info "$@" --derivation)
|
||||||
|
|
||||||
# Push the target installable and its build dependencies
|
# Push the target installable and its build dependencies
|
||||||
nix run --inputs-from . attic -- \
|
nix run --inputs-from . attic -- \
|
||||||
push \
|
push \
|
||||||
conduit \
|
conduit \
|
||||||
"$(nix path-info "$INSTALLABLE" --derivation)" \
|
"${outputs[@]}" \
|
||||||
"$(nix path-info "$INSTALLABLE")"
|
"${derivations[@]}"
|
||||||
else
|
else
|
||||||
echo "\$ATTIC_TOKEN is unset, skipping uploading to the binary cache"
|
echo "\$ATTIC_TOKEN is unset, skipping uploading to the binary cache"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue