commit 7ca877b9192cf70c1e35c1126fecc7d0df96e7f3
parent 9a76c7ee1c3b843d98518b28edaee539b923fe75
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Thu, 22 Dec 2016 16:16:06 +0100
Changing c['www'] definition style
Diffstat:
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/buildbot/master-lonelyslave.cfg b/buildbot/master-lonelyslave.cfg
@@ -51,7 +51,6 @@ from buildbot.schedulers.forcesched import ForceScheduler
from buildbot.schedulers.timed import *
from buildbot.changes import filter
-c['schedulers'] = []
gitMaster = SingleBranchScheduler(
name="global-master",
reason="Commit pushed for one of the sub-projects",
@@ -69,7 +68,7 @@ forceClick = ForceScheduler(
builderNames=["auto-click"])
-c['schedulers'] = [force, forceClick]
+c['schedulers'] = [force, gitMaster]
####### BUILDERS
# They know *how* to build: which scripts need to be invoked,
@@ -151,9 +150,6 @@ c['builders'].append(
c['status'] = []
from buildbot.plugins import util
-c['www'] = dict(port=8010,
- plugins=dict(waterfall_view={}, console_view={}))
-
authz = util.Authz(
allowRules=[
util.StopBuildEndpointMatcher(role="admins"),
@@ -166,8 +162,12 @@ authz = util.Authz(
)
auth=util.UserPasswordAuth({'marcello.stanisci@inria.fr': 'mstantaler'})
-c['www']['auth'] = auth
-c['www']['authz'] = authz
+
+c['www'] = dict(port=8010,
+ plugins=dict(waterfall_view={}, console_view={}),
+ auth=auth,
+ authz=authz)
+
####### PROJECT IDENTITY
c['title'] = "Taler"