9c5dbeaa83
Now the test targets the main nix-bitcoin flake instead of the nixos-search flake. Also remove `NIX_PATH`, which is no longer required.
22 lines
621 B
Bash
Executable File
22 lines
621 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "${BASH_SOURCE[0]%/*}"
|
|
|
|
# Use cachix to cache the `flake-info` build
|
|
cachixCache=nix-bitcoin
|
|
|
|
nix run .#cachix -- use $cachixCache
|
|
|
|
# We're running in a basic, unprivileged container that doesn't support sandboxing.
|
|
# Sandboxing is unnneeded because we're only building the 3rd-party `flake-info` tool.
|
|
echo "sandbox = false" >> /etc/nix/nix.conf
|
|
export PATH=$(nix shell -L .#flake-info .#cachix -c sh -c 'echo $PATH')
|
|
|
|
if [[ ${CACHIX_SIGNING_KEY:-} ]]; then
|
|
cachix push $cachixCache $(type -P flake-info);
|
|
fi
|
|
|
|
echo "Running flake-info (nixos-search)"
|
|
flake-info flake ../..
|