From c6abc572e8ce4572b6f4aa5306c3487d76147a02 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 24 Oct 2012 12:59:19 +0200 Subject: [PATCH] Run all tests on both 32 and 64 bit --- release.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/release.nix b/release.nix index b32ce233ec0..4c29fce29f2 100644 --- a/release.nix +++ b/release.nix @@ -193,10 +193,9 @@ let */ - tests = + tests = { system ? "x86_64-linux" }: let - t = import ./tests { system = "i686-linux"; }; - t_64 = import ./tests { system = "x86_64-linux"; }; + t = import ./tests { inherit system; }; in { avahi = t.avahi.test; bittorrent = t.bittorrent.test; @@ -207,7 +206,6 @@ let installer.rebuildCD = t.installer.rebuildCD.test; installer.separateBoot = t.installer.separateBoot.test; installer.simple = t.installer.simple.test; - installer.simple_64 = t_64.installer.simple.test; installer.swraid = t.installer.swraid.test; ipv6 = t.ipv6.test; kde4 = t.kde4.test;