about summary refs log tree commit diff
path: root/release.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-03-17 01:30:44 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-03-17 01:30:44 +0100
commit74ba1609391b07492ce9ae0f5b167d9f91aec7e1 (patch)
tree561f702b26cc7c6baa744b76d45e0d31201f7cb2 /release.nix
parent60b6483c4c54c7daf5d8cf9f77c7df8158543077 (diff)
release.nix: Include VM test for heinrich.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/release.nix b/release.nix
index 33aff057..85fd42d4 100644
--- a/release.nix
+++ b/release.nix
@@ -1,11 +1,16 @@
 with import <nixpkgs/lib>;
 
 let
+  system = "x86_64-linux";
+
   genMachine = name: cfg: (import <nixpkgs/nixos/lib/eval-config.nix> {
-    system = "x86_64-linux";
+    inherit system;
     modules = [ cfg ];
   }).config.system.build.toplevel;
 
 in {
   machines = mapAttrs genMachine (import ./default.nix).machines;
+  tests = {
+    heinrich = import ./tests/heinrich.nix { inherit system; };
+  };
 }