summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2017-11-27 12:44:12 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2017-11-27 12:44:12 +0100
commit2769d6b8fac9dd45da2f4203d667a9d53dae30e4 (patch)
treec2ef9df06a87e47e77db5c9f4867beaf7e76f46d /buildbot/master.cfg
parented827ce1bc7bd65d477c87d9b01a3b77c44f9526 (diff)
downloaddeployment-2769d6b8fac9dd45da2f4203d667a9d53dae30e4.tar.gz
deployment-2769d6b8fac9dd45da2f4203d667a9d53dae30e4.tar.bz2
deployment-2769d6b8fac9dd45da2f4203d667a9d53dae30e4.zip
builders don't use deployment code cloned by the
builder step, instead they use the one provided by the dedicated update_deployment.sh script.
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg16
1 files changed, 6 insertions, 10 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index adac28a..887eb19 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -161,42 +161,38 @@ DEBUG_FACTORY.addStep(ShellCommand(
command=["echo", "I'm here!"]))
LINT_FACTORY = util.BuildFactory()
-LINT_FACTORY.addStep(git_step(
- "git://git.taler.net/deployment.git"))
LINT_FACTORY.addStep(ShellCommand(
name="invalidation",
description="checking changes",
descriptionDone="changes checked",
command=["./invalidate.sh", "--lint"],
- workdir="build/taler-build"))
+ workdir="${HOME}/deployment/taler-build"))
LINT_FACTORY.addStep(ShellCommand(
name="linting",
description="Linting..",
descriptionDone="Linted",
command=["make", "-f", "MakefileLint"],
- workdir="build/taler-build"))
+ workdir="${HOME}/deployment/taler-build"))
LCOV_FACTORY = util.BuildFactory()
-LCOV_FACTORY.addStep(git_step(
- 'git://git.taler.net/deployment.git'))
LCOV_FACTORY.addStep(ShellCommand(
name="invalidation",
description="Invalidating timestamps",
descriptionDone="timestamps invalidated",
command=["./invalidate.sh"],
- workdir="build/taler-build"))
+ workdir="${HOME}/deployment/taler-build"))
LCOV_FACTORY.addStep(ShellCommand(
name="build",
description="Compiling..",
descriptionDone="lcov files generated",
command=["make", "lcov"],
- workdir="build/taler-build",
+ workdir="${HOME}/taler-build",
env={"PATH": "${HOME}/local/bin:${PATH}",
"TALER_CHECKDB": "postgresql:///talercheck?host=/home/${USER}/sockets"}))
SWITCHER_FACTORY = util.BuildFactory()
-SWITCHER_FACTORY.addStep(git_step(
- 'git://git.taler.net/deployment.git'))
+SWITCHER_FACTORY.git_step(
+ "git://git.taler.net/deployment.git")
SWITCHER_FACTORY.addStep(ShellCommand(
name="build",
description="Building inactive blue-green party.",