Skip to content

Commit

Permalink
Rebuild test-runtime if substrate binary is updated (#362)
Browse files Browse the repository at this point in the history
* Re-run test-runtime build script if the substrate binary changes

* cargo fmt

* Can => Cannot
  • Loading branch information
jsdw authored Dec 10, 2021
1 parent dd9bb11 commit b777420
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions test-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ codec = { package = "parity-scale-codec", version = "2", default-features = fals
subxt = { path = ".." }
sp-core = { package = "sp-core", git = "https://github.com/paritytech/substrate/", branch = "master" }
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
which = "4.2.2"
8 changes: 8 additions & 0 deletions test-runtime/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,14 @@ async fn run() {
fs::write(&runtime_path, runtime_api_contents)
.expect("Couldn't write runtime rust output");

let substrate_path =
which::which(substrate_bin).expect("Cannot resolve path to substrate binary");

// Re-build if the substrate binary we're pointed to changes (mtime):
println!(
"cargo:rerun-if-changed={}",
substrate_path.to_string_lossy()
);
// Re-build if we point to a different substrate binary:
println!("cargo:rerun-if-env-changed={}", SUBSTRATE_BIN_ENV_VAR);
// Re-build if this file changes:
Expand Down

0 comments on commit b777420

Please sign in to comment.