use nix-output-monitor if available
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
13f1274c35
commit
365c85ad27
2 changed files with 12 additions and 2 deletions
|
@ -18,7 +18,12 @@ RESULTS_FILE="$3"
|
|||
OCI_IMAGE="complement-conduit:dev"
|
||||
|
||||
pushd "$(git rev-parse --show-toplevel)" > /dev/null
|
||||
nix build .#complement
|
||||
# uses nix-output-monitor (nom) if available
|
||||
if command -v nom &> /dev/null; then
|
||||
nom build .#complement
|
||||
else
|
||||
nix build -L .#complement
|
||||
fi
|
||||
docker load < result
|
||||
popd > /dev/null
|
||||
|
||||
|
|
|
@ -6,7 +6,12 @@ set -eo pipefail
|
|||
INSTALLABLE="$1"
|
||||
|
||||
# Build the installable and forward any other arguments too
|
||||
nix build -L "$@"
|
||||
# uses nix-output-monitor (nom) if available
|
||||
if command -v nom &> /dev/null; then
|
||||
nom build "$@"
|
||||
else
|
||||
nix build -L "$@"
|
||||
fi
|
||||
|
||||
if [ ! -z "$ATTIC_TOKEN" ]; then
|
||||
nix run --inputs-from . attic -- \
|
||||
|
|
Loading…
Add table
Reference in a new issue