Skip to content
Snippets Groups Projects
Unverified Commit e4ece83b authored by Graham Christensen's avatar Graham Christensen
Browse files

tests.setuid: only on i686 and x86_64 linuxs

parent 1ca8e951
No related branches found
No related tags found
No related merge requests found
...@@ -225,10 +225,12 @@ let ...@@ -225,10 +225,12 @@ let
nix = build.x86_64-linux; system = "x86_64-linux"; nix = build.x86_64-linux; system = "x86_64-linux";
}); });
tests.setuid = pkgs.lib.genAttrs (pkgs.lib.filter (pkgs.lib.hasSuffix "-linux") systems) (system: tests.setuid = pkgs.lib.genAttrs
import ./tests/setuid.nix rec { (pkgs.lib.filter (system: system == "x86_64-linux" || system == "i686-linux") systems)
nix = build.${system}; inherit system; (system:
}); import ./tests/setuid.nix rec {
nix = build.${system}; inherit system;
});
tests.binaryTarball = tests.binaryTarball =
with import <nixpkgs> { system = "x86_64-linux"; }; with import <nixpkgs> { system = "x86_64-linux"; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment