build(ENG-21464): Remove sccache --show-stats on local builds (#24421)

Co-authored-by: Meghan Denny <meghan@bun.com>
This commit is contained in:
Marko Vejnovic
2025-11-05 16:26:48 -08:00
committed by GitHub
parent f4404a55db
commit 86a0ff442a

View File

@@ -101,9 +101,11 @@ async function build(args) {
await startGroup("CMake Build", () => spawn("cmake", buildArgs, { env }));
await startGroup("sccache stats", () => {
spawn("sccache", ["--show-stats"], { env });
});
if (isCI) {
await startGroup("sccache stats", () => {
spawn("sccache", ["--show-stats"], { env });
});
}
printDuration("total", Date.now() - startTime);
}