nodejs_24: fix fs tracking warnings on Darwin

(cherry picked from commit 504f6c9307)
This commit is contained in:
Antoine du Hamel
2026-06-27 15:39:06 +02:00
committed by github-actions[bot]
parent c4d17e3367
commit e4ef061e5a
2 changed files with 1 additions and 6 deletions

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"

View File

@@ -12,6 +12,7 @@ let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
python = python3;
stdenv = buildPackages.llvmPackages_20.libcxxStdenv;
};
gypPatches =