summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg9
1 files changed, 4 insertions, 5 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 3c97c6b..7f69cb9 100644
--- 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"]))