aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-09-28 15:57:27 +0200
committerEelco Dolstra <edolstra@gmail.com>2018-09-28 16:10:27 +0200
commit1e7b8deea7e052ed9ebf47d1411bcaf542054b41 (patch)
tree4e04f265227ac7fcd9b52940758835e576c2978a /tests
parent7ae7a38c9a7d0a5679e65c8213cd7b58dfdc1c52 (diff)
Check requiredSystemFeatures for local builds
For example, this prevents a "kvm" build on machines that don't have KVM. Fixes #2012.
Diffstat (limited to 'tests')
-rw-r--r--tests/build-remote.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/build-remote.sh b/tests/build-remote.sh
index 9bca0f4a3..ddd68f327 100644
--- a/tests/build-remote.sh
+++ b/tests/build-remote.sh
@@ -11,7 +11,8 @@ rm -rf $TEST_ROOT/store0 $TEST_ROOT/store1
nix build -f build-hook.nix -o $TEST_ROOT/result --max-jobs 0 \
--sandbox-paths /nix/store --sandbox-build-dir /build-tmp \
- --builders "$TEST_ROOT/store0; $TEST_ROOT/store1 - - 1 1 foo"
+ --builders "$TEST_ROOT/store0; $TEST_ROOT/store1 - - 1 1 foo" \
+ --system-features foo
outPath=$TEST_ROOT/result