1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 18:31:49 +02:00

* Move the remote building test from the NixOS tree to the Nix tree.

This commit is contained in:
Eelco Dolstra 2011-10-11 13:06:59 +00:00
parent c362e4d718
commit 2492914fbc
2 changed files with 104 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{ nixpkgs ? ../nixpkgs
, nix ? { outPath = ./.; rev = 1234; }
{ nixpkgs ? <nixpkgs>, nixos ? <nixos>
, nix ? { outPath = ../nix-export; rev = 1234; }
, officialRelease ? false
}:
@ -140,6 +140,11 @@ let
deb_ubuntu1010x86_64 = makeDeb_x86_64 (diskImageFuns: diskImageFuns.ubuntu1010x86_64) 50;
# System tests.
tests.remote_builds = (import ./tests/remote-builds.nix rec {
inherit nixpkgs nixos; nix = build { inherit system; }; system = "x86_64-linux";
}).test;
};