about summary refs log tree commit diff
path: root/release.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-12-11 13:40:04 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-12-11 13:40:04 +0100
commita681f8b98982c5528272195a863c218e99688d18 (patch)
tree7641819bd8f1550156526e59e03e6bc954cb6d9c /release.nix
parenta3abdeb4e1b442345da8b1d0c28e2b4921ab7433 (diff)
release.nix: Unconditionally add vuizvui tests.
We want to have non-machine-specific tests as well, so let's ensure that
we build all tests listed in the tests directory.

This is especially useful if we want to have tests on build products
within release.nix or tests which are unrelated to machines.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/release.nix b/release.nix
index 35f1ad7e..b023ef6e 100644
--- a/release.nix
+++ b/release.nix
@@ -73,7 +73,9 @@ in with pkgsUpstream.lib; with builtins; {
       machine.build.config.vuizvui.requiresTests
     ) machineList);
     mkTest = path: setAttrByPath path (getAttrFromPath path allTests);
-  in fold recursiveUpdate {} (map mkTest activatedTests);
+  in fold recursiveUpdate {} (map mkTest activatedTests) // {
+    inherit (allTests) vuizvui;
+  };
 
   pkgs = let
     releaseLib = import "${nixpkgs}/pkgs/top-level/release-lib.nix" {