Skip to content

Commit

Permalink
Merge pull request #3745 from anoma/tomas/integration-temp-artifacts
Browse files Browse the repository at this point in the history
use test-dir for network archive to avoid re-compilations after test run
  • Loading branch information
mergify[bot] authored Sep 6, 2024
2 parents ba48a27 + 4bdd596 commit ef00f27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/apps_lib/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const PROTO_SRC: &str = "./proto";

fn main() {
// Discover the repository version, if it exists
println!("cargo:rerun-if-changed=../.git");
println!("cargo:rerun-if-changed=../../.git");
let describe_opts = DescribeOptions::new();
let mut describe_format = DescribeFormatOptions::new();
describe_format.dirty_suffix("-dirty");
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/src/integration/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pub fn initialize_genesis(
wasm_checksums_path,
chain_id_prefix,
consensus_timeout_commit: Timeout::from_str("30s").unwrap(),
archive_dir: None,
archive_dir: Some(test_dir.path().to_path_buf()),
genesis_time,
},
);
Expand Down

0 comments on commit ef00f27

Please sign in to comment.