Do not warn on rust.incremental when using download CI rustc

This commit is contained in:
Jakub Beránek 2025-06-11 14:42:06 +02:00
parent 0a39445252
commit 796ee4ff6c
No known key found for this signature in database
GPG key ID: 909CD0D26483516B

View file

@ -321,11 +321,11 @@ pub fn check_incompatible_options_for_ci_rustc(
rpath,
channel,
description,
incremental,
default_linker,
std_features,
// Rest of the options can simply be ignored.
incremental: _,
debug: _,
codegen_units: _,
codegen_units_std: _,
@ -389,7 +389,6 @@ pub fn check_incompatible_options_for_ci_rustc(
warn!(current_rust_config.channel, channel, "rust");
warn!(current_rust_config.description, description, "rust");
warn!(current_rust_config.incremental, incremental, "rust");
Ok(())
}