diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bb4504f164be..38e265f2fd18d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: cache-on-failure: true - name: cargo test - run: cargo test + run: cargo test -- --nocapture lint: runs-on: ubuntu-latest diff --git a/dapp/src/lib.rs b/dapp/src/lib.rs index d799ea94520a0..ed5126d1ba51d 100644 --- a/dapp/src/lib.rs +++ b/dapp/src/lib.rs @@ -409,8 +409,10 @@ impl<'a> SolcBuilder<'a> { .map(|version| { println!("Installing {}", version); // Blocking call to install it over RPC. + dbg!(&self.versions); self.runtime.block_on(svm::install(&version)).unwrap(); self.versions.push(version.clone()); + dbg!(&self.versions); println!("Done!"); version }) @@ -434,6 +436,8 @@ impl<'a> SolcBuilder<'a> { .clone(); compiler_path.push(format!("solc-{}", &version)); + dbg!(std::process::Command::new("ls").args(["-lah", "/home/runner/.svm/*"]).output().unwrap()); + let mut solc = Solc::new_with_paths(files).solc_path(compiler_path); let lib_paths = self .lib_paths