mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
Fix build script for dev channel
This commit is contained in:
parent
29a900d916
commit
364f42d78d
1 changed files with 15 additions and 5 deletions
20
build.rs
20
build.rs
|
@ -21,6 +21,15 @@ use rustc_version::{version_meta, version_meta_for, Channel, Version, VersionMet
|
|||
use ansi_term::Colour::Red;
|
||||
|
||||
fn main() {
|
||||
check_rustc_version();
|
||||
|
||||
// Forward the profile to the main compilation
|
||||
println!("cargo:rustc-env=PROFILE={}", env::var("PROFILE").unwrap());
|
||||
// Don't rebuild even if nothing changed
|
||||
println!("cargo:rerun-if-changed=build.rs");
|
||||
}
|
||||
|
||||
fn check_rustc_version() {
|
||||
let string = include_str!("min_version.txt");
|
||||
let min_version_meta = version_meta_for(string)
|
||||
.expect("Could not parse version string in min_version.txt");
|
||||
|
@ -31,6 +40,12 @@ fn main() {
|
|||
let min_date_str = min_version_meta.clone().commit_date
|
||||
.expect("min_version.txt does not contain a rustc commit date");
|
||||
|
||||
// Dev channel (rustc built from git) does not have any date or commit information in rustc -vV
|
||||
// `current_version_meta.commit_date` would crash, so we return early here.
|
||||
if current_version_meta.channel == Channel::Dev {
|
||||
return
|
||||
}
|
||||
|
||||
let current_version = current_version_meta.clone().semver;
|
||||
let current_date_str = current_version_meta.clone().commit_date
|
||||
.expect("current rustc version information does not contain a rustc commit date");
|
||||
|
@ -69,11 +84,6 @@ fn main() {
|
|||
print_version_err(¤t_version, &*current_date_str);
|
||||
panic!("Aborting compilation due to incompatible compiler.")
|
||||
}
|
||||
|
||||
// Forward the profile to the main compilation
|
||||
println!("cargo:rustc-env=PROFILE={}", env::var("PROFILE").unwrap());
|
||||
// Don't rebuild even if nothing changed
|
||||
println!("cargo:rerun-if-changed=build.rs");
|
||||
}
|
||||
|
||||
fn correct_channel(version_meta: &VersionMeta) -> bool {
|
||||
|
|
Loading…
Reference in a new issue