tests/eval-test: clean up

This commit is contained in:
zimbatm 2017-12-25 17:23:16 +00:00 committed by Yegor Timoshenko
parent 83890749b2
commit 459ac00c62
No known key found for this signature in database
GPG Key ID: C34BF9DCC9DF8210
1 changed files with 9 additions and 13 deletions

View File

@ -1,19 +1,15 @@
#!/bin/sh
cd $(dirname $0)/..
set -e
find=(find . -name default.nix)
cd "$(dirname "$0")/.."
for profile in `${find[@]}`; do
echo evaluating $profile >&2
for profile in $(find . -name default.nix); do
echo evaluating $profile >&2
nix-build '<nixpkgs/nixos>' \
-I nixos-config=tests/eval-test.nix \
-I nixos-hardware-profile=$profile \
-A system \
--dry-run
if [ $? -ne 0 ]; then
exit 1
fi
nix-build '<nixpkgs/nixos>' \
-I nixos-config=tests/eval-test.nix \
-I nixos-hardware-profile=$profile \
-A system \
--dry-run
done