Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove verbosity flag when running benchmark #6782

Merged
merged 2 commits into from
Dec 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/turbo-benchmark/src/ttft/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -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?
Expand Down