Merge branch 'fix-aarch64-test' of https://github.com/grahamc/nix

This commit is contained in:
Eelco Dolstra 2018-02-07 14:12:15 +01:00
commit 0f3dae1064
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE
1 changed files with 7 additions and 5 deletions

View File

@ -224,11 +224,13 @@ let
nix = build.x86_64-linux; system = "x86_64-linux";
});
tests.setuid = pkgs.lib.genAttrs (pkgs.lib.filter (pkgs.lib.hasSuffix "-linux") systems) (system:
import ./tests/setuid.nix rec {
inherit nixpkgs;
nix = build.${system}; inherit system;
});
tests.setuid = pkgs.lib.genAttrs
(pkgs.lib.filter (system: system == "x86_64-linux" || system == "i686-linux") systems)
(system:
import ./tests/setuid.nix rec {
inherit nixpkgs;
nix = build.${system}; inherit system;
});
tests.binaryTarball =
with import nixpkgs { system = "x86_64-linux"; };