From 33b8bf5cd676732fc1341f73ff180293ffa4029e Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Thu, 14 Apr 2016 15:44:36 +0200 Subject: BB tmp=>local --- buildbot/master.cfg | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'buildbot') 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"])) -- cgit v1.2.3