Merge pull request #40 from NixOS/travis-ci
This commit is contained in:
commit
7dbceec472
3
.travis.yml
Normal file
3
.travis.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
language: nix
|
||||||
|
sudo: true # needed by the nix install
|
||||||
|
script: ./tests/eval-test.sh
|
|
@ -1,18 +1,15 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
cd $(dirname $0)/..
|
set -e
|
||||||
|
|
||||||
find=(find . -name default.nix)
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
for profile in `${find[@]}`; do
|
for profile in $(find . -name default.nix); do
|
||||||
echo evaluating $profile >&2
|
echo evaluating $profile >&2
|
||||||
|
|
||||||
nixos-rebuild \
|
nix-build '<nixpkgs/nixos>' \
|
||||||
-I nixos-config=tests/eval-test.nix \
|
-I nixos-config=tests/eval-test.nix \
|
||||||
-I nixos-hardware-profile=$profile \
|
-I nixos-hardware-profile=$profile \
|
||||||
dry-build
|
-A system \
|
||||||
|
--dry-run
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue