Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions src/bootstrap/src/core/config/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2134,15 +2134,7 @@ pub fn parse_download_ci_llvm<'a>(
asserts: bool,
) -> bool {
let dwn_ctx = dwn_ctx.as_ref();

// We don't ever want to use `true` on CI, as we should not
// download upstream artifacts if there are any local modifications.
let default = if dwn_ctx.is_running_on_ci {
StringOrBool::String("if-unchanged".to_string())
} else {
StringOrBool::Bool(true)
};
let download_ci_llvm = download_ci_llvm.unwrap_or(default);
let download_ci_llvm = download_ci_llvm.unwrap_or(StringOrBool::Bool(true));

let if_unchanged = || {
if rust_info.is_from_tarball() {
Expand Down Expand Up @@ -2174,8 +2166,9 @@ pub fn parse_download_ci_llvm<'a>(
);
}

if b && dwn_ctx.is_running_on_ci {
// On CI, we must always rebuild LLVM if there were any modifications to it
#[cfg(not(test))]
if b && dwn_ctx.is_running_on_ci && CiEnv::is_rust_lang_managed_ci_job() {
// On rust-lang CI, we must always rebuild LLVM if there were any modifications to it
panic!(
"`llvm.download-ci-llvm` cannot be set to `true` on CI. Use `if-unchanged` instead."
);
Expand Down
Loading