libuv: disable tests on powerpc64

The libuv tests constantly get stuck during powerpc64le builds.
This commit is contained in:
Adam Joseph 2023-11-02 04:48:44 -07:00
parent 5350639d1d
commit e663a72b3d

View File

@ -93,7 +93,9 @@ stdenv.mkDerivation (finalAttrs: {
# https://github.com/NixOS/nixpkgs/issues/219466
separateDebugInfo = !stdenv.hostPlatform.isStatic;
doCheck = true;
doCheck =
# routinely hangs on powerpc64le
!stdenv.hostPlatform.isPower64;
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;