Skip to content

Commit c596c2f

Browse files
authored
nix: mark i686-linux cross builds as broken (#410945)
2 parents 9895a0e + 31395c7 commit c596c2f

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)