commit 33b8bf5cd676732fc1341f73ff180293ffa4029e
parent 86eb7e0245c17975ea6b5639a037de2c82000617
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Thu, 14 Apr 2016 15:44:36 +0200
BB tmp=>local
Diffstat:
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -2,8 +2,7 @@
# ex: set syntax=python:
c = BuildmasterConfig = {}
-
-tmp = "/tmp/taler-exchange"
+local = "${HOME}/local"
####### BUILDSLAVES
@@ -73,7 +72,7 @@ exchangeBuild.addStep(ShellCommand(
descriptionDone="bootstraped",
command=["./bootstrap"],
hideStepIf=True))
-exchangeBuild.addStep(Configure(command=["./configure", "--prefix="+tmp, "--with-gnunet=${HOME}/local"]))
+exchangeBuild.addStep(Configure(command=["./configure", "--prefix="+local, "--with-gnunet=+local"]))
exchangeBuild.addStep(Compile(command=["make"]))
exchangeBuild.addStep(ShellCommand(name="Install",
description="Installing",
@@ -88,7 +87,7 @@ exchangeBuild.addStep(ShellCommand(name="Create database",
hideStepIf=True))
# run the tests
exchangeBuild.addStep(Test(command=["make","check"],
- env={'PATH':tmp + "/bin:" + os.environ['PATH']}))
+ env={'PATH':local + "/bin:" + os.environ['PATH']}))
# running the performence tests for Taler
exchangePerf = BuildFactory()
@@ -103,7 +102,7 @@ exchangePerf.addStep(ShellCommand(
descriptionDone="bootstraped",
command=["./bootstrap"],
hideStepIf=True))
-exchangePerf.addStep(Configure(command=["./configure", "--prefix="+tmp, "--with-gnunet=${HOME}/local"]))
+exchangePerf.addStep(Configure(command=["./configure", "--prefix="+local, "--with-gnunet=+local"]))
exchangePerf.addStep(Compile(command=["make"]))
exchangePerf.addStep(Compile(command=["make","-C","src/exchangedb/","perf-exchangedb"]))