Skip to content

Commit 0d7f503

Browse files
zrosenbauerclaude
andcommitted
fix(benchmarks): increase CLI exec timeout to 300s
The build benchmark runs Rspress under the hood which is significantly heavier than sync/setup. On CI hardware the 120s timeout was insufficient for the XL tier, causing ETIMEDOUT failures. Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 20eaa0e commit 0d7f503

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchmarks/src/helpers/exec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export function runCli(args: readonly string[], cwd: string): string {
1616
cwd,
1717
stdio: 'pipe',
1818
encoding: 'utf8',
19-
timeout: 120_000,
19+
timeout: 300_000,
2020
})
2121
}
2222

0 commit comments

Comments
 (0)