From b90eef50eccf62f90b4b2f7ea52b814d1864d3c2 Mon Sep 17 00:00:00 2001 From: Shakker Date: Fri, 20 Mar 2026 05:00:11 +0000 Subject: [PATCH] fix(ci): widen Linux memory-hotspot isolation cap --- scripts/test-parallel.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-parallel.mjs b/scripts/test-parallel.mjs index ef09968b223..2d5946155bb 100644 --- a/scripts/test-parallel.mjs +++ b/scripts/test-parallel.mjs @@ -320,7 +320,7 @@ const heavyUnitLaneCount = parseEnvNumber( ); const heavyUnitMinDurationMs = parseEnvNumber("OPENCLAW_TEST_HEAVY_UNIT_MIN_MS", 1200); const defaultMemoryHeavyUnitFileLimit = - testProfile === "serial" ? 0 : isCI ? 32 : testProfile === "low" ? 8 : 16; + testProfile === "serial" ? 0 : isCI ? 64 : testProfile === "low" ? 8 : 16; const memoryHeavyUnitFileLimit = parseEnvNumber( "OPENCLAW_TEST_MEMORY_HEAVY_UNIT_FILE_LIMIT", defaultMemoryHeavyUnitFileLimit,