From da2a5661af272cefc68f15c8df0d70334ab406a3 Mon Sep 17 00:00:00 2001 From: 190n Date: Fri, 6 Sep 2024 12:03:23 -0800 Subject: [PATCH] Increase randomIntegrityAuditRate from 0.05 to 1.0 in CI (#13775) --- scripts/runner.node.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/runner.node.mjs b/scripts/runner.node.mjs index e5bda47890..8339114482 100755 --- a/scripts/runner.node.mjs +++ b/scripts/runner.node.mjs @@ -437,6 +437,7 @@ async function spawnBun(execPath, { args, cwd, timeout, env, stdout, stderr }) { BUN_FEATURE_FLAG_INTERNAL_FOR_TESTING: "1", BUN_DEBUG_QUIET_LOGS: "1", BUN_GARBAGE_COLLECTOR_LEVEL: "1", + BUN_JSC_randomIntegrityAuditRate: "1.0", BUN_ENABLE_CRASH_REPORTING: "0", // change this to '1' if https://github.com/oven-sh/bun/issues/13012 is implemented BUN_RUNTIME_TRANSPILER_CACHE_PATH: "0", BUN_INSTALL_CACHE_DIR: tmpdirPath,