1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//! Build script: generates `schemas/job.schema.json` and the embedded UI HTML.
#[path = "src/build/mod.rs"]
mod build;
fn main() {
println!("cargo:rerun-if-changed=ui/index.html");
println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rerun-if-changed=schemas/job.schema.json");
// Re-stamp the embedded git provenance whenever HEAD moves (new commit or
// checkout) or the index changes (staging). Harmless when these paths are
// absent (e.g. a crates.io tarball): cargo just watches paths that never
// change. A purely unstaged edit to a tracked file moves neither
// `.git/HEAD` nor `.git/index`, so its `-dirty` marker is re-stamped on the
// next build that does touch HEAD/index (or after a `cargo clean`); staged
// or committed changes always re-stamp immediately.
println!("cargo:rerun-if-changed=.git/HEAD");
println!("cargo:rerun-if-changed=.git/index");
// Embed the commit the binary is built from so `--version` and `GET /health`
// can identify the exact build, not just the crate version. Falls back to
// "unknown" outside a git checkout so published builds still compile. A
// working tree with uncommitted changes to tracked files gets a `-dirty`
// suffix (e.g. `a1b2c3d-dirty`), the conventional `git describe --dirty`
// signal, so a build from a mutated tree never reports a clean SHA.
let mut git_sha = git_output(&["rev-parse", "--short", "HEAD"]);
if git_sha != "unknown" && git_is_dirty() {
git_sha.push_str("-dirty");
}
println!("cargo:rustc-env=MOADIM_GIT_SHA={git_sha}");
println!(
"cargo:rustc-env=MOADIM_GIT_DATE={}",
git_output(&["show", "-s", "--format=%cs", "HEAD"])
);
let manifest_dir =
std::env::var("CARGO_MANIFEST_DIR").expect("CARGO_MANIFEST_DIR is always set by cargo");
build::run(&manifest_dir);
}
/// Run `git <args>` and return its trimmed stdout, or `"unknown"` when git is
/// missing, exits non-zero, or the output is empty (e.g. building from a
/// crates.io tarball with no `.git` directory).
fn git_output(args: &[&str]) -> String {
std::process::Command::new("git")
.args(args)
.output()
.ok()
.filter(|out| out.status.success())
.and_then(|out| String::from_utf8(out.stdout).ok())
.map(|stdout| stdout.trim().to_string())
.filter(|stdout| !stdout.is_empty())
.unwrap_or_else(|| "unknown".to_string())
}
/// Return `true` when the working tree has uncommitted changes to *tracked*
/// files (staged or unstaged). Untracked files are ignored — they are not part
/// of the built source. `git diff --quiet HEAD` exits 1 when tracked files
/// differ from HEAD and 0 when the tree is clean; any other outcome (git
/// missing, no commits, errors) is treated as not-dirty so a non-git build
/// never spuriously reports `-dirty`.
fn git_is_dirty() -> bool {
std::process::Command::new("git")
.args(["diff", "--quiet", "HEAD", "--"])
.output()
.is_ok_and(|out| out.status.code() == Some(1))
}