summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg7
1 files changed, 7 insertions, 0 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 3ac57d5..d4b813e 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -71,6 +71,7 @@ exchangeTestBuild = BuildFactory()
exchangeTestBuild.addStep(Git(repourl='git://git.taler.net/deployment.git',
mode='full',
method='fresh',
+ haltOnFailure=True,
branch='master'))
exchangeTestBuild.addStep(ShellCommand(
name="invalidation",
@@ -78,6 +79,12 @@ exchangeTestBuild.addStep(ShellCommand(
descriptionDone="done",
command=["./invalidate.sh"],
workdir="build/taler-build"))
+exchangeTestBuild.addStep(ShellCommand(
+ name="builder",
+ description="Building Taler",
+ descriptionDone="done",
+ command=["make"],
+ workdir="build/taler-build"))
from buildbot.config import BuilderConfig