mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Fix evaluation of the VM tests
This commit is contained in:
parent
cc63db1dd5
commit
239841787b
1 changed files with 2 additions and 2 deletions
|
@ -192,11 +192,11 @@ let
|
||||||
|
|
||||||
# System tests.
|
# System tests.
|
||||||
tests.remote_builds = (import ./tests/remote-builds.nix rec {
|
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;
|
}).test;
|
||||||
|
|
||||||
tests.nix_copy_closure = (import ./tests/nix-copy-closure.nix rec {
|
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;
|
}).test;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue