Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tools/upgrade-version/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,13 @@ fn main() -> anyhow::Result<()> {
println!("$> cargo check");
cmd!("cargo", "check").run().expect("Cargo check failed!");

// Update the lockfile in crates/smoketests/modules..
println!("$> cd crates/smoketests/modules && cargo check");
cmd!("cargo", "check")
.dir("crates/smoketests/modules")
.run()
.expect("cargo check in crates/smoketests/modules failed!");

println!("$> pnpm install");
cmd!("pnpm", "install").run().expect("pnpm run build failed!");

Expand Down
Loading