summaryrefslogtreecommitdiffstats
path: root/tests/eval-test.sh
blob: 00970b77563652710537d079cb3ccf0f4592bac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

cd $(dirname $0)/..

find=(find . -name default.nix)

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
done