Skip to content

Commit

Permalink
debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
noise64 committed Dec 10, 2024
1 parent f6c86d4 commit 9759d43
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions wasm-rpc-stubgen/tests-integration/tests/compose.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,20 @@ fn init_caller(name: &str) -> TempDir {
}

fn compile_rust(path: &Path) {
// TODO: just for CI debug
std::process::Command::new("sh")
.arg("-c")
.arg("which cargo-component")
.current_dir(path)
.status()
.unwrap();
std::process::Command::new("sh")
.arg("-c")
.arg("which cargo")
.current_dir(path)
.status()
.unwrap();

let status = std::process::Command::new("cargo")
.arg("component")
.arg("build")
Expand Down

0 comments on commit 9759d43

Please sign in to comment.