From 11ccf69f75bf704d073463bcbaae7931c9570d60 Mon Sep 17 00:00:00 2001 From: Falco Peijnenburg Date: Sun, 10 Sep 2017 12:45:48 +0200 Subject: [PATCH] tests/elk: Fixed failing build on i686. Too much memory is required for the test. --- nixos/release.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/release.nix b/nixos/release.nix index c43034ff44b4..34198a950647 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -240,7 +240,7 @@ in rec { tests.etcd = hydraJob (import tests/etcd.nix { system = "x86_64-linux"; }); tests.ec2-nixops = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-nixops; tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config; - tests.elk = callTest tests/elk.nix {}; + tests.elk = hydraJob (import tests/elk.nix { system = "x86_64-linux"; }); tests.env = callTest tests/env.nix {}; tests.ferm = callTest tests/ferm.nix {}; tests.firefox = callTest tests/firefox.nix {};