summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg30
1 files changed, 29 insertions, 1 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 00bc91b..4c64999 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -241,13 +241,39 @@ TIP_RESERVE_TOPPER_FACTORY.addStep(ShellCommand(
SWITCHER_FACTORY = util.BuildFactory()
SWITCHER_FACTORY.addStep(git_step(
"git://git.taler.net/deployment.git"))
+
+SWITCHER_FACTORY.addStep(ShellCommand(
+ name="build",
+ description="Generating configuration file.",
+ descriptionDone="Configuration file generated.",
+ command=["./config.sh"],
+ workdir="build/buildbot",
+ haltOnFailure=True))
+
SWITCHER_FACTORY.addStep(ShellCommand(
name="build",
description="Building inactive blue-green party.",
- descriptionDone="Compile.",
+ descriptionDone="Inactive party got built.",
command=["./build.sh"],
workdir="build/buildbot",
haltOnFailure=True))
+
+SWITCHER_FACTORY.addStep(ShellCommand(
+ name="build",
+ description="Generating exchange keys, and auditor-sign them.",
+ descriptionDone="Exchange keys generated, and auditor-signed.",
+ command=["./keys.sh"],
+ workdir="build/buildbot",
+ haltOnFailure=True))
+
+SWITCHER_FACTORY.addStep(ShellCommand(
+ name="build",
+ description="Signing exchange wire details.",
+ descriptionDone="Exchange wire details got signed.",
+ command=["./sign.sh"],
+ workdir="build/buildbot",
+ haltOnFailure=True))
+
SWITCHER_FACTORY.addStep(ShellCommand(
name="restart services",
description="Restarting inactive blue-green party.",
@@ -255,6 +281,7 @@ SWITCHER_FACTORY.addStep(ShellCommand(
command=["./restart.sh"],
workdir="build/buildbot",
haltOnFailure=True))
+
SWITCHER_FACTORY.addStep(ShellCommand(
name="check services correctly restarted",
description="Checking services are correctly restarted.",
@@ -262,6 +289,7 @@ SWITCHER_FACTORY.addStep(ShellCommand(
command=["./checks.sh"],
workdir="build/buildbot",
haltOnFailure=True))
+
SWITCHER_FACTORY.addStep(ShellCommand(
name="switch active party",
description="Switch to the party which was inactive.",