taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 7dfa425953d313bb765686f5f8aa635993915c71
parent 07c693ca7837fd5dcc679b2dabf6bb9d7e2ba582
Author: Florian Dold <florian.dold@gmail.com>
Date:   Thu, 30 Nov 2017 16:00:33 +0100

also stop on sanity check failures

Diffstat:
Mbuildbot/master.cfg | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 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.",