mirror of https://github.com/rwf2/Rocket.git
Refuse to build on non-nightly with a nice message.
This commit is contained in:
parent
08278e8f0e
commit
307469dc3a
|
@ -23,3 +23,4 @@ compiletest_rs = "^0.2"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
ansi_term = "^0.9"
|
ansi_term = "^0.9"
|
||||||
|
version_check = "^0.1"
|
||||||
|
|
|
@ -1,20 +1,15 @@
|
||||||
#![feature(slice_patterns)]
|
|
||||||
|
|
||||||
//! This tiny build script ensures that rocket_codegen is not compiled with an
|
//! This tiny build script ensures that rocket_codegen is not compiled with an
|
||||||
//! incompatible version of rust. It does this by executing `rustc --version`
|
//! incompatible version of rust.
|
||||||
//! and comparing the version to `MIN_VERSION`, the minimum required version. If
|
|
||||||
//! the installed version is less than the minimum required version, an error is
|
|
||||||
//! printed out to the console and compilation is halted.
|
|
||||||
|
|
||||||
extern crate ansi_term;
|
extern crate ansi_term;
|
||||||
|
extern crate version_check;
|
||||||
use std::env;
|
|
||||||
use std::process::Command;
|
|
||||||
|
|
||||||
use ansi_term::Colour::{Red, Yellow, Blue, White};
|
use ansi_term::Colour::{Red, Yellow, Blue, White};
|
||||||
|
use version_check::{is_nightly, is_min_version, is_min_date};
|
||||||
|
|
||||||
// Specifies the minimum nightly version needed to compile Rocket's codegen.
|
// Specifies the minimum nightly version needed to compile Rocket's codegen.
|
||||||
const MIN_VERSION: &'static str = "2017-01-03";
|
const MIN_DATE: &'static str = "2017-01-03";
|
||||||
|
const MIN_VERSION: &'static str = "1.16.0-nightly";
|
||||||
|
|
||||||
// Convenience macro for writing to stderr.
|
// Convenience macro for writing to stderr.
|
||||||
macro_rules! printerr {
|
macro_rules! printerr {
|
||||||
|
@ -25,47 +20,48 @@ macro_rules! printerr {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert a string of %Y-%m-%d to a single u32 maintaining ordering.
|
|
||||||
fn str_to_ymd(ymd: &str) -> Option<u32> {
|
|
||||||
let ymd: Vec<_> = ymd.split("-").filter_map(|s| s.parse::<u32>().ok()).collect();
|
|
||||||
match ymd.as_slice() {
|
|
||||||
&[y, m, d] => Some((y << 9) | (m << 5) | d),
|
|
||||||
_ => None,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
// Run rustc to get the version information.
|
let ok_nightly = is_nightly();
|
||||||
let output = env::var("RUSTC").ok()
|
let ok_version = is_min_version(MIN_VERSION);
|
||||||
.and_then(|rustc| Command::new(rustc).arg("--version").output().ok())
|
let ok_date = is_min_date(MIN_DATE);
|
||||||
.and_then(|output| String::from_utf8(output.stdout).ok())
|
|
||||||
.and_then(|s| s.split(" ").nth(3).map(|s| s.to_string()))
|
|
||||||
.map(|s| s.trim_right().trim_right_matches(")").to_string());
|
|
||||||
|
|
||||||
if let Some(ref version) = output {
|
let print_version_err = |version: &str, date: &str| {
|
||||||
let needed = str_to_ymd(MIN_VERSION);
|
printerr!("{} {}. {} {}.",
|
||||||
let actual = str_to_ymd(version);
|
White.paint("Installed version is:"),
|
||||||
if let (Some(needed), Some(actual)) = (needed, actual) {
|
Yellow.paint(format!("{} ({})", version, date)),
|
||||||
if actual < needed {
|
White.paint("Minimum required:"),
|
||||||
|
Yellow.paint(format!("{} ({})", MIN_VERSION, MIN_DATE)));
|
||||||
|
};
|
||||||
|
|
||||||
|
match (ok_nightly, ok_version, ok_date) {
|
||||||
|
(Some(is_nightly), Some((ok_version, version)), Some((ok_date, date))) => {
|
||||||
|
if !is_nightly {
|
||||||
printerr!("{} {}",
|
printerr!("{} {}",
|
||||||
Red.bold().paint("Error:"),
|
Red.bold().paint("Error:"),
|
||||||
White.paint("Rocket codegen requires a newer version of rustc."));
|
White.paint("Rocket requires a nightly version of Rust."));
|
||||||
|
print_version_err(&*version, &*date);
|
||||||
|
printerr!("{}{}{}",
|
||||||
|
Blue.paint("See the getting started guide ("),
|
||||||
|
White.paint("https://rocket.rs/guide/getting-started/"),
|
||||||
|
Blue.paint(") for more information."));
|
||||||
|
panic!("Aborting compilation due to incompatible compiler.")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !ok_version || !ok_date {
|
||||||
|
printerr!("{} {}",
|
||||||
|
Red.bold().paint("Error:"),
|
||||||
|
White.paint("Rocket codegen requires a more recent version of rustc."));
|
||||||
printerr!("{}{}{}",
|
printerr!("{}{}{}",
|
||||||
Blue.paint("Use `"),
|
Blue.paint("Use `"),
|
||||||
White.paint("rustup update"),
|
White.paint("rustup update"),
|
||||||
Blue.paint("` or your preferred method to update Rust."));
|
Blue.paint("` or your preferred method to update Rust."));
|
||||||
printerr!("{} {}. {} {}.",
|
print_version_err(&*version, &*date);
|
||||||
White.paint("Installed version is:"),
|
|
||||||
Yellow.paint(version.as_str()),
|
|
||||||
White.paint("Minimum required:"),
|
|
||||||
Yellow.paint(MIN_VERSION));
|
|
||||||
panic!("Aborting compilation due to incompatible compiler.")
|
panic!("Aborting compilation due to incompatible compiler.")
|
||||||
} else {
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
_ => {
|
||||||
|
println!("cargo:warning={}", "Rocket was unable to check rustc compatibility.");
|
||||||
|
println!("cargo:warning={}", "Build may fail due to incompatible rustc version.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
printerr!("{}", Yellow.paint("Warning: Rocket was unable to check rustc compatibility."));
|
|
||||||
printerr!("{}", Yellow.paint("Build may fail due to incompatible rustc version."));
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,7 @@ repository = "https://github.com/SergioBenitez/Rocket"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
keywords = ["rocket", "web", "framework", "server"]
|
keywords = ["rocket", "web", "framework", "server"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
build = "build.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
term-painter = "^0.2"
|
term-painter = "^0.2"
|
||||||
|
@ -29,5 +30,9 @@ default-features = false
|
||||||
lazy_static = "0.2"
|
lazy_static = "0.2"
|
||||||
rocket_codegen = { version = "0.1.5", path = "../codegen" }
|
rocket_codegen = { version = "0.1.5", path = "../codegen" }
|
||||||
|
|
||||||
|
[build-dependencies]
|
||||||
|
ansi_term = "^0.9"
|
||||||
|
version_check = "^0.1"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
testing = []
|
testing = []
|
||||||
|
|
|
@ -0,0 +1,60 @@
|
||||||
|
//! This tiny build script ensures that rocket is not compiled with an
|
||||||
|
//! incompatible version of rust.
|
||||||
|
|
||||||
|
extern crate ansi_term;
|
||||||
|
extern crate version_check;
|
||||||
|
|
||||||
|
use ansi_term::Colour::{Red, Yellow, Blue, White};
|
||||||
|
use version_check::{is_nightly, is_min_version};
|
||||||
|
|
||||||
|
// Specifies the minimum nightly version needed to compile Rocket.
|
||||||
|
const MIN_VERSION: &'static str = "1.16.0-nightly";
|
||||||
|
|
||||||
|
// Convenience macro for writing to stderr.
|
||||||
|
macro_rules! printerr {
|
||||||
|
($($arg:tt)*) => ({
|
||||||
|
use std::io::prelude::*;
|
||||||
|
write!(&mut ::std::io::stderr(), "{}\n", format_args!($($arg)*))
|
||||||
|
.expect("Failed to write to stderr.")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let (ok_nightly, ok_version) = (is_nightly(), is_min_version(MIN_VERSION));
|
||||||
|
let print_version_err = |version: &str| {
|
||||||
|
printerr!("{} {}. {} {}.",
|
||||||
|
White.paint("Installed version is:"),
|
||||||
|
Yellow.paint(version),
|
||||||
|
White.paint("Minimum required:"),
|
||||||
|
Yellow.paint(MIN_VERSION));
|
||||||
|
};
|
||||||
|
|
||||||
|
if let (Some(is_nightly), Some((ok_version, version))) = (ok_nightly, ok_version) {
|
||||||
|
if !is_nightly {
|
||||||
|
printerr!("{} {}",
|
||||||
|
Red.bold().paint("Error:"),
|
||||||
|
White.paint("Rocket requires a nightly version of Rust."));
|
||||||
|
print_version_err(&*version);
|
||||||
|
printerr!("{}{}{}",
|
||||||
|
Blue.paint("See the getting started guide ("),
|
||||||
|
White.paint("https://rocket.rs/guide/getting-started/"),
|
||||||
|
Blue.paint(") for more information."));
|
||||||
|
panic!("Aborting compilation due to incompatible compiler.")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !ok_version {
|
||||||
|
printerr!("{} {}",
|
||||||
|
Red.bold().paint("Error:"),
|
||||||
|
White.paint("Rocket requires a newer version of rustc."));
|
||||||
|
printerr!("{}{}{}",
|
||||||
|
Blue.paint("Use `"),
|
||||||
|
White.paint("rustup update"),
|
||||||
|
Blue.paint("` or your preferred method to update Rust."));
|
||||||
|
print_version_err(&*version);
|
||||||
|
panic!("Aborting compilation due to incompatible compiler.")
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
println!("cargo:warning={}", "Rocket was unable to check rustc compatibility.");
|
||||||
|
println!("cargo:warning={}", "Build may fail due to incompatible rustc version.");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue