fix(ci): widen Linux memory-hotspot isolation cap

This commit is contained in:
Shakker 2026-03-20 05:00:11 +00:00 committed by Shakker
parent 829beced04
commit b90eef50ec
1 changed files with 1 additions and 1 deletions

View File

@ -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,