summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-11-30 16:00:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-11-30 16:00:33 +0100
commit7dfa425953d313bb765686f5f8aa635993915c71 (patch)
tree3f95f143cd64150befcab437d355c72d2bdc4d43 /buildbot/master.cfg
parent07c693ca7837fd5dcc679b2dabf6bb9d7e2ba582 (diff)
downloaddeployment-7dfa425953d313bb765686f5f8aa635993915c71.tar.gz
deployment-7dfa425953d313bb765686f5f8aa635993915c71.tar.bz2
deployment-7dfa425953d313bb765686f5f8aa635993915c71.zip
also stop on sanity check failures
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg6
1 files changed, 4 insertions, 2 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index ca235f0..a5ffd5b 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -221,13 +221,15 @@ SWITCHER_FACTORY.addStep(ShellCommand(
description="Restarting inactive blue-green party.",
descriptionDone="Restarting Taler.",
command=["./restart.sh"],
- workdir="build/buildbot"))
+ workdir="build/buildbot",
+ haltOnFailure=True))
SWITCHER_FACTORY.addStep(ShellCommand(
name="check services correctly restarted",
description="Checking services are correctly restarted.",
descriptionDone="All services are correctly restarted.",
command=["./checks.sh"],
- workdir="build/buildbot"))
+ workdir="build/buildbot",
+ haltOnFailure=True))
SWITCHER_FACTORY.addStep(ShellCommand(
name="switch active party",
description="Switch to the party which was inactive.",