taler-deployment

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

commit 311f623779a9e4084e0e27afa0663d16d261fe46
parent d433ed0c310d1738e69f07a8a62e5ec6199fbf1d
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Mon, 10 Jun 2019 00:32:28 +0200

BB likes {}.

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -395,7 +395,7 @@ BUILD_FACTORY.addStep(ShellCommand( description="Building inactive blue-green party.", descriptionDone="Inactive party got built.", command=["./build.sh"], - workdir="$HOME/deployment/buildbot", + workdir="${HOME}/deployment/buildbot", haltOnFailure=True)) BUILD_FACTORY.addStep(ShellCommand( @@ -403,7 +403,7 @@ BUILD_FACTORY.addStep(ShellCommand( description="Generating configuration file.", descriptionDone="Configuration file generated.", command=["./config.sh"], - workdir="$HOME/deployment/buildbot", + workdir="${HOME}/deployment/buildbot", haltOnFailure=True)) BUILD_FACTORY.addStep(ShellCommand( @@ -411,7 +411,7 @@ BUILD_FACTORY.addStep(ShellCommand( description="Generating exchange keys, and auditor-sign them.", descriptionDone="Exchange keys generated, and auditor-signed.", command=["./keys.sh"], - workdir="build/buildbot", + workdir="${HOME}/deployment/buildbot", haltOnFailure=True, env={'BRANCH': util.Property("branch")})) @@ -420,7 +420,7 @@ BUILD_FACTORY.addStep(ShellCommand( description="Signing exchange wire details.", descriptionDone="Exchange wire details got signed.", command=["./sign.sh"], - workdir="$HOME/deployment/buildbot", + workdir="${HOME}/deployment/buildbot", haltOnFailure=True, env={'BRANCH': util.Property("branch")})) @@ -429,7 +429,7 @@ BUILD_FACTORY.addStep(ShellCommand( description="Restarting inactive blue-green party.", descriptionDone="Restarting Taler.", command=["./restart.sh"], - workdir="$HOME/deployment/buildbot", + workdir="${HOME}/deployment/buildbot", haltOnFailure=True, env={'BRANCH': util.Property("branch")})) @@ -438,7 +438,7 @@ BUILD_FACTORY.addStep(ShellCommand( description="Checking services are correctly restarted.", descriptionDone="All services are correctly restarted.", command=["./checks.sh"], - workdir="$HOME/deployment/buildbot", + workdir="${HOME}/deployment/buildbot", haltOnFailure=True, env={'DEPLOYMENT': "test"}))