gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-deployment] branch master updated (8d7edcf -> b7cee7


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated (8d7edcf -> b7cee7f)
Date: Sat, 04 Nov 2017 22:04:54 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a change to branch master
in repository deployment.

    from 8d7edcf  indent
     new daf032c  remove wildcard import
     new b7cee7f  move imports up

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 buildbot/master.cfg | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index b525fd2..212ae5c 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -1,7 +1,11 @@
-# -*- python -*-
-# ex: set filetype=python:
-
-from buildbot.plugins import *
+from buildbot.steps.source.git import Git
+from buildbot.steps.shell import ShellCommand
+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.
@@ -126,9 +130,6 @@ c["schedulers"] = [
 # FIXME: the bad side of these builders is that they expect the worker's 
environment
 # to be _already_ set up (codedbases, scripts, etc).  In other words, it's not 
"self-contained".
 
-from buildbot.steps.source.git import Git
-from buildbot.steps.shell import ShellCommand
-
 wallet_factory = util.BuildFactory()
 wallet_factory.addStep(Git(
     repourl="git://git.taler.net/wallet-webex.git",
@@ -189,16 +190,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 +322,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",

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]