Skip to content

Commit

Permalink
Preserve artifact cache unless stale (paritytech#1918)
Browse files Browse the repository at this point in the history
Co-authored-by: Marcin S <marcin@realemail.net>
  • Loading branch information
eagr and mrcnski authored Nov 19, 2023
1 parent 05b319d commit e97398e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions substrate/utils/build-script-utils/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,34 @@ fn get_version(impl_commit: &str) -> String {
impl_commit
)
}

/// Generate `SUBSTRATE_WASMTIME_VERSION`
pub fn generate_wasmtime_version() {
generate_dependency_version("wasmtime", "SUBSTRATE_WASMTIME_VERSION");
}

fn generate_dependency_version(dep: &str, env_var: &str) {
// we only care about the root
match std::process::Command::new("cargo")
.args(["tree", "--depth=0", "--locked", "--package", dep])
.output()
{
Ok(output) if output.status.success() => {
let version = String::from_utf8_lossy(&output.stdout);

// <DEP> vX.X.X
if let Some(ver) = version.strip_prefix(&format!("{} v", dep)) {
println!("cargo:rustc-env={}={}", env_var, ver);
} else {
println!("cargo:warning=Unexpected result {}", version);
}
},

// command errors out when it could not find the given dependency
// or when having multiple versions of it
Ok(output) =>
println!("cargo:warning=`cargo tree` {}", String::from_utf8_lossy(&output.stderr)),

Err(err) => println!("cargo:warning=Could not run `cargo tree`: {}", err),
}
}

0 comments on commit e97398e

Please sign in to comment.