summaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-06-03 15:34:19 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-06-03 15:34:19 +0200
commit5bc0b8a063a3640f8d86b3f627e2008d5adfcffa (patch)
treec28988cce18ad70070b2a47c652e39f57575bbc3 /buildbot
parent5a9c595a5c764919d02904cb697981da62382fd0 (diff)
downloaddeployment-5bc0b8a063a3640f8d86b3f627e2008d5adfcffa.tar.gz
deployment-5bc0b8a063a3640f8d86b3f627e2008d5adfcffa.tar.bz2
deployment-5bc0b8a063a3640f8d86b3f627e2008d5adfcffa.zip
move config-generation after the build.
Diffstat (limited to 'buildbot')
-rw-r--r--buildbot/master.cfg16
1 files changed, 8 insertions, 8 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 9a77690..58c255a 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -376,14 +376,6 @@ BUILD_FACTORY.addStep(git_step(
"git://git.taler.net/deployment.git"))
BUILD_FACTORY.addStep(ShellCommand(
- name="config",
- description="Generating configuration file.",
- descriptionDone="Configuration file generated.",
- command=["./config.sh"],
- workdir="build/buildbot",
- haltOnFailure=True))
-
-BUILD_FACTORY.addStep(ShellCommand(
name="build",
description="Building inactive blue-green party.",
descriptionDone="Inactive party got built.",
@@ -392,6 +384,14 @@ BUILD_FACTORY.addStep(ShellCommand(
haltOnFailure=True))
BUILD_FACTORY.addStep(ShellCommand(
+ name="config",
+ description="Generating configuration file.",
+ descriptionDone="Configuration file generated.",
+ command=["./config.sh"],
+ workdir="build/buildbot",
+ haltOnFailure=True))
+
+BUILD_FACTORY.addStep(ShellCommand(
name="keys generation and sign",
description="Generating exchange keys, and auditor-sign them.",
descriptionDone="Exchange keys generated, and auditor-signed.",