commit d9ac3ae19326bca1ef3da26869792ed72759aa93
parent 2cfd11cc281f3ac0d9c085aa46fa13946046c427
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Thu, 14 Apr 2016 13:55:46 +0200
buildbot --with-gnunet fix
Diffstat:
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -8,11 +8,9 @@ tmp = "/tmp/taler-exchange"
####### BUILDSLAVES
from buildbot.buildslave import BuildSlave
-c['slaves'] = [BuildSlave("simpleSlave", "taler"),
- BuildSlave("arch-x86_64", "taler")]
+c['slaves'] = [BuildSlave("simpleSlave", "taler")]
-slaveNames = ["simpleSlave",
- "arch-x86_64"]
+slaveNames = ["simpleSlave"]
c['protocols'] = {'pb': {'port': 9989}}
@@ -75,7 +73,7 @@ exchangeBuild.addStep(ShellCommand(
descriptionDone="bootstraped",
command=["./bootstrap"],
hideStepIf=True))
-exchangeBuild.addStep(Configure(command=["./configure", "--prefix="+tmp]))
+exchangeBuild.addStep(Configure(command=["./configure", "--prefix="+tmp, "--with-gnunet=${HOME}/local"]))
exchangeBuild.addStep(Compile(command=["make"]))
exchangeBuild.addStep(ShellCommand(name="Install",
description="Installing",