Skip to content

Commit 6e1d0c9

Browse files
committed
[bfops/cargo-test-all]: mybe fix?
1 parent 261e09e commit 6e1d0c9

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

tools/ci/src/main.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,16 @@ fn run_typescript_tests() -> Result<()> {
447447
}
448448

449449
fn run_csharp_tests() -> Result<()> {
450+
cmd!(
451+
"cargo",
452+
"run",
453+
"-p",
454+
"spacetimedb-codegen",
455+
"--example",
456+
"regen-csharp-moduledef",
457+
)
458+
.run()?;
459+
cmd!("bash", "tools/check-diff.sh", "crates/bindings-csharp").run()?;
450460
cmd!("dotnet", "test", "-warnaserror")
451461
.dir("crates/bindings-csharp")
452462
.run()?;
@@ -566,16 +576,6 @@ fn main() -> Result<()> {
566576
)
567577
.run()?;
568578
cmd!("bash", "tools/check-diff.sh").run()?;
569-
cmd!(
570-
"cargo",
571-
"run",
572-
"-p",
573-
"spacetimedb-codegen",
574-
"--example",
575-
"regen-csharp-moduledef",
576-
)
577-
.run()?;
578-
cmd!("bash", "tools/check-diff.sh", "crates/bindings-csharp").run()?;
579579
}
580580

581581
Some(CiCmd::Lint) => {

0 commit comments

Comments
 (0)