nixos-hardware/tests/eval-test.sh

28 lines
408 B
Bash
Raw Normal View History

2017-12-24 12:44:48 +01:00
#!/bin/sh
cd $(dirname $0)/..
2017-12-24 12:44:48 +01:00
skip_paths=(
./inversepath/usbarmory/*
./tests/*
)
find=(find . -name *.nix)
for path in ${skip_paths[@]}; do
find+=(-not -path $path)
done
for profile in `${find[@]}`; do
echo evaluating $profile >&2
nixos-rebuild \
-I nixos-config=tests/eval-test.nix \
-I nixos-hardware-profile=$profile \
dry-build
if [ $? -ne 0 ]; then
exit 1
fi
2017-12-24 12:44:48 +01:00
done