diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-03-25T20·59+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-03-25T20·59+0100 |
commit | 239841787bfbf499256c0bb9358f058a8243d60a (patch) | |
tree | 8904e456944bd0f1caf4804c88c21116f3f9f839 /release.nix | |
parent | cc63db1dd5c37aead3e3d2e20e2d2f548cc24830 (diff) |
Fix evaluation of the VM tests
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release.nix b/release.nix index 89c477c3a44e..d2b35b7465dd 100644 --- a/release.nix +++ b/release.nix @@ -192,11 +192,11 @@ let # System tests. tests.remote_builds = (import ./tests/remote-builds.nix rec { - nix = build { inherit system; }; system = "x86_64-linux"; + nix = build.x86_64-linux; system = "x86_64-linux"; }).test; tests.nix_copy_closure = (import ./tests/nix-copy-closure.nix rec { - nix = build { inherit system; }; system = "x86_64-linux"; + nix = build.x86_64-linux; system = "x86_64-linux"; }).test; }; |