nodejs_24: fix fs tracking warnings on Darwin (#536043)

This commit is contained in:
Antoine du Hamel
2026-06-28 07:55:28 +00:00
committed by GitHub
2 changed files with 1 additions and 6 deletions
-6
View File
@@ -519,12 +519,6 @@ let
"test-tick-processor-arguments"
"test-set-raw-mode-reset-signal"
]
# Apple SDK update broke something related to those tests, so skipping them for now
++ lib.optionals (majorVersion == "24" && stdenv.hostPlatform.isDarwin) [
"test-worker-track-unmanaged-fds"
"test-esm-import-meta-main-eval"
"test-worker-debug"
]
# These network/fetch/inspector tests fail on riscv64
++ lib.optionals (majorVersion == "24" && stdenv.hostPlatform.isRiscV64) [
"test-fetch"
+1
View File
@@ -12,6 +12,7 @@ let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
python = python3;
stdenv = buildPackages.llvmPackages_20.libcxxStdenv;
};
gypPatches =