summaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2016-04-19 14:32:57 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2016-04-19 14:32:57 +0200
commit83e62f2b41b6f4b9a5456d99221daa1a28de7e4e (patch)
tree6e97fb5503fbb536d55040c4bd161fb92165e2b5 /buildbot
parent1ff38c8d84aec1640072b985a47c1eb683940acd (diff)
downloaddeployment-83e62f2b41b6f4b9a5456d99221daa1a28de7e4e.tar.gz
deployment-83e62f2b41b6f4b9a5456d99221daa1a28de7e4e.tar.bz2
deployment-83e62f2b41b6f4b9a5456d99221daa1a28de7e4e.zip
adding "make" to build Taler
Diffstat (limited to 'buildbot')
-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