]> Humopery - private/buildbot-default.git/commitdiff
fail fast
authorErik Mackdanz <erikmack@gmail.com>
Sun, 8 Dec 2024 04:55:27 +0000 (04:55 +0000)
committerErik Mackdanz <erikmack@gmail.com>
Sun, 8 Dec 2024 04:55:27 +0000 (04:55 +0000)
master.cfg

index 2115ad6aa658dbfa0334aa18e759fb5c72afcfbb..b88610d40a0909ab515794a60779224bded1b0b4 100644 (file)
@@ -202,16 +202,20 @@ c['builders'].append(BuilderConfig(
         ShellCommand(
             name="build veilid-server",
             command=["cargo","build","--release"],
+            haltOnFailure=True,
             workdir="build/veilid-server"),
         ShellCommand(
             name="copy veilid-server to lin0",
+            haltOnFailure=True,
             command=["scp","target/release/veilid-server","lin0:~"]),
         ShellCommand(
             name="build veilid-cli",
             command=["cargo","build","--release"],
+            haltOnFailure=True,
             workdir="build/veilid-cli"),
         ShellCommand(
             name="copy veilid-cli to lin0",
+            haltOnFailure=True,
             command=["scp","target/release/veilid-cli","lin0:~"]),
         ShellCommand(
             name="clean build dir",
@@ -396,6 +400,7 @@ c['builders'].append(BuilderConfig(
             workdir="build"),
         ShellCommand(
             name="copy fcgisrv to lin0",
+            haltOnFailure=True,
             command=["scp","target/release/fcgisrv","lin0:~"]),
         ShellCommand(
             name="clean build dir",