Skip to content

Commit 31395c7

Browse files
mweineltroberth
authored andcommitted
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 <[email protected]>
1 parent cc5aa22 commit 31395c7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkgs/tools/package-management/nix/common-meson.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@ stdenv.mkDerivation (finalAttrs: {
274274
license = licenses.lgpl21Plus;
275275
inherit maintainers teams;
276276
platforms = platforms.unix;
277+
# Gets stuck in functional-tests in cross-trunk jobset and doesn't timeout
278+
# https://hydra.nixos.org/build/298175022
279+
# probably https://github.com/NixOS/nix/issues/13042
280+
broken = stdenv.hostPlatform.system == "i686-linux" && stdenv.buildPlatform != stdenv.hostPlatform;
277281
outputsToInstall = [ "out" ] ++ optional enableDocumentation "man";
278282
mainProgram = "nix";
279283
};

0 commit comments

Comments
 (0)