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.
Cargo.lock
1 parent a32f7c5 commit fb09991Copy full SHA for fb09991
src/bootstrap/src/core/config/config.rs
@@ -69,6 +69,11 @@ pub const RUSTC_IF_UNCHANGED_ALLOWED_PATHS: &[&str] = &[
69
":!src/rustdoc-json-types",
70
":!tests",
71
":!triagebot.toml",
72
+ // If not running on CI, this is generally safe because changes to dependencies usually
73
+ // involve modifying `Cargo.toml`, which would invalidate the CI-rustc cache on non-allowed paths anyway.
74
+ // Also, for non-CI environments, this should be completely safe.
75
+ #[cfg(not(ci))]
76
+ ":!Cargo.lock",
77
];
78
79
/// Global configuration for the entire build and/or bootstrap.
0 commit comments