We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a71ef commit 94302a8Copy full SHA for 94302a8
1 file changed
tools/ci/src/main.rs
@@ -164,6 +164,12 @@ fn main() -> Result<()> {
164
165
Some(CiCmd::WasmBindings) => {
166
bash!("cargo test -p spacetimedb-codegen")?;
167
+ // Make sure the `Cargo.lock` file reflects the latest available versions.
168
+ // This is what users would end up with on a fresh module, so we want to
169
+ // catch any compile errors arising from a different transitive closure
170
+ // of dependencies than what is in the workspace lock file.
171
+ //
172
+ // For context see also: https://github.com/clockworklabs/SpacetimeDB/pull/2714
173
bash!("cargo update")?;
174
bash!("cargo run -p spacetimedb-cli -- build --project-path modules/module-test")?;
175
}
0 commit comments