mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
nix: mark i686-linux cross builds as broken (#410945)
This commit is contained in:
commit
c596c2f0ce
1 changed files with 4 additions and 0 deletions
|
@ -274,6 +274,10 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
license = licenses.lgpl21Plus;
|
||||
inherit maintainers teams;
|
||||
platforms = platforms.unix;
|
||||
# Gets stuck in functional-tests in cross-trunk jobset and doesn't timeout
|
||||
# https://hydra.nixos.org/build/298175022
|
||||
# probably https://github.com/NixOS/nix/issues/13042
|
||||
broken = stdenv.hostPlatform.system == "i686-linux" && stdenv.buildPlatform != stdenv.hostPlatform;
|
||||
outputsToInstall = [ "out" ] ++ optional enableDocumentation "man";
|
||||
mainProgram = "nix";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue