commit 83e62f2b41b6f4b9a5456d99221daa1a28de7e4e
parent 1ff38c8d84aec1640072b985a47c1eb683940acd
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Tue, 19 Apr 2016 14:32:57 +0200
adding "make" to build Taler
Diffstat:
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git 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