summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2016-04-14 15:44:36 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2016-04-14 15:44:36 +0200
commit33b8bf5cd676732fc1341f73ff180293ffa4029e (patch)
treee8b725765d13767241a2dadfa12b4aba08b0cb47 /buildbot/master.cfg
parent86eb7e0245c17975ea6b5639a037de2c82000617 (diff)
downloaddeployment-33b8bf5cd676732fc1341f73ff180293ffa4029e.tar.gz
deployment-33b8bf5cd676732fc1341f73ff180293ffa4029e.tar.bz2
deployment-33b8bf5cd676732fc1341f73ff180293ffa4029e.zip
BB tmp=>local
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"]))