summaryrefslogtreecommitdiff
path: root/buildbot/master-lonelyslave.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/master-lonelyslave.cfg')
-rw-r--r--buildbot/master-lonelyslave.cfg11
1 files changed, 9 insertions, 2 deletions
diff --git a/buildbot/master-lonelyslave.cfg b/buildbot/master-lonelyslave.cfg
index f9e1894..8acdadc 100644
--- a/buildbot/master-lonelyslave.cfg
+++ b/buildbot/master-lonelyslave.cfg
@@ -90,13 +90,18 @@ lonelyness.addStep(Git(repourl='git://git.taler.net/deployment.git',
alwaysUseLatest=True,
haltOnFailure=True,
branch='master'))
+lonelyness.addStep(ShellCommand(name="invalidation",
+ description="Invalidating timestamps",
+ descriptionDone="timestamps invalidated",
+ command=["./invalidate.sh"],
+ workdir="build/taler-build"))
lonelyness.addStep(ShellCommand(name="builder",
description="Lone compilation..",
descriptionDone="Compilation passed",
command=["make"],
workdir="build/taler-build",
env={'PATH': "${HOME}/local/bin:${PATH}",
- 'TALER_CHECKDB': "postgres:///talercheck-${USER}"}))
+ 'TALER_CHECKDB' : "postgresql:///talercheck?host=/home/${USER}/sockets"}))
lcov = BuildFactory()
lcov.addStep(Git(repourl='git://git.taler.net/deployment.git',
mode='full',
@@ -113,7 +118,9 @@ lcov.addStep(ShellCommand(name="builder",
description="Compiling..",
descriptionDone="lcov files generated",
command=["make", "lcov"],
- workdir="build/taler-build"))
+ workdir="build/taler-build",
+ env={'PATH': "${HOME}/local/bin:${PATH}",
+ 'TALER_CHECKDB' : "postgresql:///talercheck?host=/home/${USER}/sockets"}))
autoClick = BuildFactory()
autoClick.addStep(ShellCommand(name="clicker",