commit daf032c755eef2ee508be463bce8ae0aa7adc44b
parent 8d7edcfa91e5bd3a0b1b146cc14677a5ee03a432
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Sat, 4 Nov 2017 22:01:09 +0100
remove wildcard import
Diffstat:
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -1,7 +1,12 @@
# -*- python -*-
# ex: set filetype=python:
-from buildbot.plugins import *
+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 directory.
@@ -189,16 +194,16 @@ lcov_factory.addStep(ShellCommand(
name="invalidation",
description="Invalidating timestamps",
descriptionDone="timestamps invalidated",
- command=["./invalidate.sh"],
+ command=["./invalidate.sh"],
workdir="build/taler-build"))
lcov_factory.addStep(ShellCommand(
name="build",
description="Compiling..",
descriptionDone="lcov files generated",
- command=["make", "lcov"],
+ command=["make", "lcov"],
workdir="build/taler-build",
env={"PATH": "${HOME}/local/bin:${PATH}",
- "TALER_CHECKDB": "postgresql:///talercheck?host=/home/${USER}/sockets"}))
+ "TALER_CHECKDB": "postgresql:///talercheck?host=/home/${USER}/sockets"}))
switcher_factory = util.BuildFactory()
switcher_factory.addStep(Git(
@@ -321,7 +326,6 @@ c["builders"] = [
# status of each build will be pushed to these targets. buildbot/reporters/*.py
# has a variety to choose from, like IRC bots.
-from buildbot.plugins import reporters
irc = reporters.IRC(
"irc.eu.freenode.net",
"taler-bb",