mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.4 KiB
Rust
78 lines
2.4 KiB
Rust
use std::borrow::Cow;
|
|
use std::path::Path;
|
|
use std::process::Command;
|
|
|
|
const MAJOR: &str = env!("CARGO_PKG_VERSION_MAJOR");
|
|
const MINOR: &str = env!("CARGO_PKG_VERSION_MINOR");
|
|
const PATCH: &str = env!("CARGO_PKG_VERSION_PATCH");
|
|
|
|
fn get_calver() -> String {
|
|
if PATCH == "0" {
|
|
format!("{MAJOR}.{MINOR}")
|
|
} else {
|
|
format!("{MAJOR}.{MINOR}.{PATCH}")
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let git_hash = Command::new("git")
|
|
.args(["rev-parse", "HEAD"])
|
|
.output()
|
|
.ok()
|
|
.filter(|output| output.status.success())
|
|
.and_then(|x| String::from_utf8(x.stdout).ok());
|
|
|
|
let calver = get_calver();
|
|
let version: Cow<_> = match &git_hash {
|
|
Some(git_hash) => format!("{} ({})", calver, &git_hash[..8]).into(),
|
|
None => calver.into(),
|
|
};
|
|
|
|
println!(
|
|
"cargo:rustc-env=BUILD_TARGET={}",
|
|
std::env::var("TARGET").unwrap()
|
|
);
|
|
|
|
println!("cargo:rustc-env=VERSION_AND_GIT_HASH={}", version);
|
|
|
|
if git_hash.is_none() {
|
|
return;
|
|
}
|
|
|
|
// we need to revparse because the git dir could be anywhere if you are
|
|
// using detached worktrees but there is no good way to obtain an OsString
|
|
// from command output so for now we can't accept non-utf8 paths here
|
|
// probably rare enouch where it doesn't matter tough we could use gitoxide
|
|
// here but that would be make it a hard dependency and slow compile times
|
|
let Some(git_dir): Option<String> = Command::new("git")
|
|
.args(["rev-parse", "--git-dir"])
|
|
.output()
|
|
.ok()
|
|
.filter(|output| output.status.success())
|
|
.and_then(|x| String::from_utf8(x.stdout).ok())
|
|
else {
|
|
return;
|
|
};
|
|
// If heads starts pointing at something else (different branch)
|
|
// we need to return
|
|
let head = Path::new(&git_dir).join("HEAD");
|
|
if head.exists() {
|
|
println!("cargo:rerun-if-changed={}", head.display());
|
|
}
|
|
// if the thing head points to (branch) itself changes
|
|
// we need to return
|
|
let Some(head_ref): Option<String> = Command::new("git")
|
|
.args(["symbolic-ref", "HEAD"])
|
|
.output()
|
|
.ok()
|
|
.filter(|output| output.status.success())
|
|
.and_then(|x| String::from_utf8(x.stdout).ok())
|
|
else {
|
|
return;
|
|
};
|
|
let head_ref = Path::new(&git_dir).join(head_ref);
|
|
if head_ref.exists() {
|
|
println!("cargo:rerun-if-changed={}", head_ref.display());
|
|
}
|
|
}
|