summaryrefslogtreecommitdiffstats
path: root/tests/build-test.sh
blob: bd762a5d74d41e338dc3df81d51d13f66f2af3c1 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

cd $(dirname $0)

for profile in $(find .. -name \*.nix); do
    echo $profile >&2
    nixos-rebuild -I nixos-config=build-test.nix -I nixos-hardware-profile=$profile dry-build
done