Auto merge of #124261 - onur-ozkan:drop-llvm-if-available, r=Mark-Simulacrum

drop deprecated value `if-available` for `download-ci-llvm` option

It's been 5 months since we deprecated this. It should be fine to drop its support now.
This commit is contained in:
bors 2024-04-28 08:52:27 +00:00
commit 91d5e4af86

View File

@ -2492,11 +2492,6 @@ fn parse_download_ci_llvm(
b
}
// FIXME: "if-available" is deprecated. Remove this block later (around mid 2024)
// to not break builds between the recent-to-old checkouts.
Some(StringOrBool::String(s)) if s == "if-available" => {
llvm::is_ci_llvm_available(self, asserts)
}
Some(StringOrBool::String(s)) if s == "if-unchanged" => if_unchanged(),
Some(StringOrBool::String(other)) => {
panic!("unrecognized option for download-ci-llvm: {:?}", other)