summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-11-27 00:08:54 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-11-27 00:08:54 +0100
commit71ff679e02f5ddfd4999f536c7710e2a78d8323c (patch)
treeb4aac65d1010ec9e2a9204f2c2f8228113422b09 /buildbot/master.cfg
parent5e25874c195b1dcdcee4315f39b595d22e895a4e (diff)
downloaddeployment-71ff679e02f5ddfd4999f536c7710e2a78d8323c.tar.gz
deployment-71ff679e02f5ddfd4999f536c7710e2a78d8323c.tar.bz2
deployment-71ff679e02f5ddfd4999f536c7710e2a78d8323c.zip
coverage worker
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg22
1 files changed, 5 insertions, 17 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 90605cb..fffc948 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -2,7 +2,8 @@ import re
from getpass import getuser
from buildbot.steps.source.git import Git
from buildbot.steps.shell import ShellCommand
-from buildbot.plugins import (reporters, worker, changes, schedulers, util)
+from buildbot.plugins import (reporters, worker,
+ changes, schedulers, util)
# This is a sample buildmaster config file. It must be
# installed as 'master.cfg' in your buildmaster's base
@@ -421,22 +422,9 @@ LCOV_FACTORY.addStep(
name="invalidation",
description="Invalidating timestamps",
descriptionDone="timestamps invalidated",
- command=["./invalidate.sh"],
- workdir="../../deployment/taler-build",
- env={"TALER_ENV_NAME": "not-test"}
- )
-) # work-around 'set -eu'
-LCOV_FACTORY.addStep(
- ShellCommand(
- name="build",
- description="Compiling..",
- descriptionDone="lcov files generated",
- command=["make", "lcov"],
- workdir="../../deployment/taler-build",
- env={
- "PATH": "${HOME}/local/bin:${PATH}",
- "TALER_CHECKDB": "postgres:///talercheck-${USER}"
- }
+ command=["./build.sh"],
+ workdir="../../deployment/buildbot",
+ haltOnFailure=True
)
)