summaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-06-10 00:32:28 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-06-10 00:32:28 +0200
commit311f623779a9e4084e0e27afa0663d16d261fe46 (patch)
tree4e49293b89a4acaa20bf60a51b133df3b8be19d0 /buildbot
parentd433ed0c310d1738e69f07a8a62e5ec6199fbf1d (diff)
downloaddeployment-311f623779a9e4084e0e27afa0663d16d261fe46.tar.gz
deployment-311f623779a9e4084e0e27afa0663d16d261fe46.tar.bz2
deployment-311f623779a9e4084e0e27afa0663d16d261fe46.zip
BB likes {}.
Diffstat (limited to 'buildbot')
-rw-r--r--buildbot/master.cfg12
1 files changed, 6 insertions, 6 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 63531ce..1f5fdd9 100644
--- 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"}))