Export some more version metadata

This commit is contained in:
Nadja Reitzenstein 2022-01-05 20:40:35 +01:00
parent 1020e21e24
commit a0c280eae4
2 changed files with 53 additions and 4 deletions

View File

@ -1,3 +1,4 @@
use std::process::Command;
use walkdir::{WalkDir, DirEntry}; use walkdir::{WalkDir, DirEntry};
fn is_hidden(entry: &DirEntry) -> bool { fn is_hidden(entry: &DirEntry) -> bool {
@ -8,8 +9,25 @@ fn is_hidden(entry: &DirEntry) -> bool {
} }
fn main() { fn main() {
// Tell cargo to only run this script if the schema files or this script have changed // Build version number using the current git commit id
println!("cargo:rerun-if-changed=schema"); let out = Command::new("git").arg("rev-list")
.args(["HEAD", "-1"])
.output()
.expect("failed to run `git rev-list HEAD -1`");
let owned_gitrev = String::from_utf8(out.stdout)
.expect("git rev-list output was not valid UTF8");
let gitrev = owned_gitrev.trim();
let abbrev = &gitrev[0..9];
println!("cargo:rustc-env=CARGO_PKG_VERSION_GITREV={}", gitrev);
let out = Command::new("git").arg("log")
.args(["-1", "--format=%as"])
.output()
.expect("failed to run `git log -1 --format=\"format:%as\"`");
let commit_date = String::from_utf8(out.stdout)
.expect("git log output was not valid UTF8");
let commit_date = commit_date.trim();
println!("cargo:rustc-env=BFFH_GIT_COMMIT_DATE={}", commit_date);
let mut compile_command = ::capnpc::CompilerCommand::new(); let mut compile_command = ::capnpc::CompilerCommand::new();
@ -17,6 +35,8 @@ fn main() {
// i.e. a file "user.capnp" will result in module "schema::user" // i.e. a file "user.capnp" will result in module "schema::user"
compile_command.default_parent_module(vec!["schema".into()]); compile_command.default_parent_module(vec!["schema".into()]);
println!(">>> Collecting schemas...");
for entry in WalkDir::new("schema") for entry in WalkDir::new("schema")
.max_depth(2) .max_depth(2)
.into_iter() .into_iter()
@ -30,10 +50,35 @@ fn main() {
.unwrap_or(false) .unwrap_or(false)
) )
{ {
println!("Collecting schema file {}", entry.path().display()); println!(" Collecting schema file {}", entry.path().display());
compile_command.file(entry.path()); compile_command.file(entry.path());
} }
println!("Compiling schemas..."); println!(">>> Compiling schemas...");
compile_command.run().expect("Failed to generate API code"); compile_command.run().expect("Failed to generate API code");
println!(">>> Building version number...");
let rustc = std::env::var("RUSTC").unwrap();
let out = Command::new(rustc).arg("--version")
.output()
.expect("failed to run `rustc --version`");
let rustc_version = String::from_utf8(out.stdout)
.expect("rustc --version returned invalid UTF-8");
let rustc_version = rustc_version.trim();
println!("cargo:rustc-env=CARGO_RUSTC_VERSION={}", rustc_version);
let tagged_release = option_env!("BFFHD_BUILD_TAGGED_RELEASE") == Some("1");
let release = if tagged_release {
format!("BFFH {version} [{rustc}]",
version = env!("CARGO_PKG_VERSION"),
rustc = rustc_version)
} else {
format!("BFFH {version} ({gitrev} {date}) [{rustc}]",
version=env!("CARGO_PKG_VERSION"),
gitrev=abbrev,
date=commit_date,
rustc=rustc_version)
};
println!("cargo:rustc-env=BFFHD_RELEASE_STRING={}", release);
} }

View File

@ -43,6 +43,10 @@ use slog::Logger;
use paho_mqtt::AsyncClient; use paho_mqtt::AsyncClient;
use crate::config::{ActorConn, Config, InitiatorConn}; use crate::config::{ActorConn, Config, InitiatorConn};
const RELEASE: &'static str = env!("BFFHD_RELEASE_STRING");
const VERSION: &'static str = env!("CARGO_PKG_VERSION");
const GITREV: &'static str = env!("CARGO_PKG_VERSION_GITREV");
fn main() { fn main() {
use clap::{crate_version, crate_description, crate_name}; use clap::{crate_version, crate_description, crate_name};