summaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-11-27 17:22:31 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-11-27 17:22:31 +0100
commite0bc9c7cf1d266d5ae8615f49bac7bce98ed0aaf (patch)
tree42b87922425725e432b6519a34a8b4d92386fb90 /buildbot
parent84590e54072640884f77c47f0c0f9edca0dceac5 (diff)
downloaddeployment-e0bc9c7cf1d266d5ae8615f49bac7bce98ed0aaf.tar.gz
deployment-e0bc9c7cf1d266d5ae8615f49bac7bce98ed0aaf.tar.bz2
deployment-e0bc9c7cf1d266d5ae8615f49bac7bce98ed0aaf.zip
make coverage in two steps (compile+coverage)
Diffstat (limited to 'buildbot')
-rwxr-xr-xbuildbot/coverage.sh2
-rw-r--r--buildbot/master.cfg13
2 files changed, 13 insertions, 2 deletions
diff --git a/buildbot/coverage.sh b/buildbot/coverage.sh
index fc1ba28..f6ddf46 100755
--- a/buildbot/coverage.sh
+++ b/buildbot/coverage.sh
@@ -12,8 +12,6 @@ exit 1
fi
source "${HOME}/activate"
-taler-deployment bootstrap
-taler-deployment build
for codebase in merchant exchange ; do
TOP="$HOME/sources/${codebase}/"
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 6edd68b..b59cf03 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -419,6 +419,19 @@ LCOV_FACTORY = util.BuildFactory()
LCOV_FACTORY.addStep(
ShellCommand(
haltOnFailure=True,
+ name="build",
+ description="Building Taler",
+ descriptionDone="Taler built",
+ command=["./build.sh"],
+ workdir="../../deployment/buildbot",
+ env={"TALER_CHECKDB": "postgres:///talercheck-${USER}"},
+ haltOnFailure=True
+ )
+)
+
+LCOV_FACTORY.addStep(
+ ShellCommand(
+ haltOnFailure=True,
name="invalidation",
description="Invalidating timestamps",
descriptionDone="timestamps invalidated",