From: Erik Mackdanz Date: Sun, 8 Dec 2024 04:55:27 +0000 (+0000) Subject: fail fast X-Git-Url: https://git.humopery.space/?a=commitdiff_plain;h=f1c7da2de21e5a453bb751c5c5854f515f539b7e;p=private%2Fbuildbot-default.git fail fast --- diff --git a/master.cfg b/master.cfg index 2115ad6..b88610d 100644 --- a/master.cfg +++ b/master.cfg @@ -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",