From 4f47afe13a39f1d448fdee888164c98972f83fc5 Mon Sep 17 00:00:00 2001 From: Mehul Kar Date: Tue, 12 Dec 2023 22:06:46 -0600 Subject: [PATCH 1/2] chore: remove verbosity flag when running benchmark We shouldn't need this now that https://github.com/vercel/turbo/pull/6779 was merged --- packages/turbo-benchmark/src/ttft/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/turbo-benchmark/src/ttft/run.ts b/packages/turbo-benchmark/src/ttft/run.ts index d92a58416d989..d85e91c98814c 100755 --- a/packages/turbo-benchmark/src/ttft/run.ts +++ b/packages/turbo-benchmark/src/ttft/run.ts @@ -8,7 +8,7 @@ export function run(profilePath: string) { // Set up the monorepo we will run the benchmark on setup(); - const turboFlags = `-vvv --dry --skip-infer --profile=${profilePath}`; + const turboFlags = `--dry --skip-infer --profile=${profilePath}`; console.log("Executing turbo build in child process", { cwd: process.cwd(), From 28420e62a2abba09d9473b527f7612f7d3c8efcd Mon Sep 17 00:00:00 2001 From: Mehul Kar Date: Tue, 12 Dec 2023 22:07:31 -0600 Subject: [PATCH 2/2] Update run.ts --- packages/turbo-benchmark/src/ttft/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/turbo-benchmark/src/ttft/run.ts b/packages/turbo-benchmark/src/ttft/run.ts index d85e91c98814c..b7eea46557090 100755 --- a/packages/turbo-benchmark/src/ttft/run.ts +++ b/packages/turbo-benchmark/src/ttft/run.ts @@ -22,7 +22,7 @@ export function run(profilePath: string) { try { cp.execSync(cmd, { ...DEFAULT_EXEC_OPTS, - env: { ...process.env, EXPERIMENTAL_RUST_CODEPATH: "true" }, + env: process.env, }); } catch (e) { // catch errors and exit. the build command seems to be erroring out due to very large output?