We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7bc81c commit 3c97227Copy full SHA for 3c97227
build_system/build_backend.rs
@@ -19,6 +19,9 @@ pub(crate) fn build_backend(
19
if is_ci() {
20
// Deny warnings on CI
21
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");
25
}
26
27
if use_unstable_features {
0 commit comments