rust/build.rs

56 lines
1.6 KiB
Rust
Raw Normal View History

use std::env;
use std::fs::File;
use std::io::Write;
use std::path::{Path, PathBuf};
use std::process::Command;
fn main() {
// Only check .git/HEAD dirty status if it exists - doing so when
// building dependent crates may lead to false positives and rebuilds
if Path::new(".git/HEAD").exists() {
println!("cargo:rerun-if-changed=.git/HEAD");
}
println!("cargo:rerun-if-env-changed=CFG_RELEASE_CHANNEL");
2017-05-25 06:39:44 +02:00
let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());
2017-05-25 06:39:44 +02:00
File::create(out_dir.join("commit-info.txt"))
.unwrap()
.write_all(commit_info().as_bytes())
2017-05-19 12:31:29 +02:00
.unwrap();
2017-05-25 06:39:44 +02:00
}
2017-05-25 06:39:44 +02:00
// Try to get hash and date of the last commit on a best effort basis. If anything goes wrong
// (git not installed or if this is not a git repository) just return an empty string.
fn commit_info() -> String {
2018-03-17 04:16:15 +01:00
match (channel(), commit_hash(), commit_date()) {
2019-02-04 11:30:43 +01:00
(channel, Some(hash), Some(date)) => format!("{} ({} {})", channel, hash.trim_end(), date),
2017-05-25 06:39:44 +02:00
_ => String::new(),
}
}
2018-03-17 04:16:15 +01:00
fn channel() -> String {
if let Ok(channel) = env::var("CFG_RELEASE_CHANNEL") {
channel
} else {
"nightly".to_owned()
}
}
2017-05-25 06:39:44 +02:00
fn commit_hash() -> Option<String> {
Command::new("git")
2017-05-25 06:39:44 +02:00
.args(&["rev-parse", "--short", "HEAD"])
.output()
.ok()
2017-05-25 06:39:44 +02:00
.and_then(|r| String::from_utf8(r.stdout).ok())
}
2017-05-25 06:39:44 +02:00
fn commit_date() -> Option<String> {
Command::new("git")
2017-05-25 06:39:44 +02:00
.args(&["log", "-1", "--date=short", "--pretty=format:%cd"])
.output()
.ok()
2017-05-25 06:39:44 +02:00
.and_then(|r| String::from_utf8(r.stdout).ok())
}