diff options
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/release.nix b/release.nix index c5c2170f78d0..538211ca9498 100644 --- a/release.nix +++ b/release.nix @@ -225,10 +225,12 @@ 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 { - 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 { + nix = build.${system}; inherit system; + }); tests.binaryTarball = with import <nixpkgs> { system = "x86_64-linux"; }; |