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

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"; };