summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2017-11-04 22:01:09 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2017-11-04 22:01:09 +0100
commitdaf032c755eef2ee508be463bce8ae0aa7adc44b (patch)
tree31445d54738c8d904542f9b59df009a22cc4dad2
parent8d7edcfa91e5bd3a0b1b146cc14677a5ee03a432 (diff)
downloaddeployment-daf032c755eef2ee508be463bce8ae0aa7adc44b.tar.gz
deployment-daf032c755eef2ee508be463bce8ae0aa7adc44b.tar.bz2
deployment-daf032c755eef2ee508be463bce8ae0aa7adc44b.zip
remove wildcard import
-rw-r--r--buildbot/master.cfg14
1 files changed, 9 insertions, 5 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index b525fd2..d823bad 100644
--- 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",