nix: mark i686-linux cross builds as broken
They are broken on hydra's cross-trunk jobset since at least 2022-05-24 and more recently they've been getting stuck while running the functional-tests and block a build slot until the hard timeout. Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
This commit is contained in:
committed by
Jörg Thalheim
parent
cc5aa2274e
commit
31395c766e
@@ -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";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user