Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 3c97227

Browse files
committed
Fix previous commit
1 parent e7bc81c commit 3c97227

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build_system/build_backend.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ pub(crate) fn build_backend(
1919
if is_ci() {
2020
// Deny warnings on CI
2121
rustflags += " -Dwarnings";
22+
23+
// Disabling incr comp reduces cache size and incr comp doesn't save as much on CI anyway
24+
cmd.env("CARGO_BUILD_INCREMENTAL", "false");
2225
}
2326

2427
if use_unstable_features {

0 commit comments

Comments
 (0)