summaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2016-12-22 16:16:06 +0100
committerMarcello Stanisci <marcello.stanisci@inria.fr>2016-12-22 16:16:06 +0100
commit7ca877b9192cf70c1e35c1126fecc7d0df96e7f3 (patch)
tree5a69b586649aee804bc5f0bffe12853dfb443cf3 /buildbot
parent9a76c7ee1c3b843d98518b28edaee539b923fe75 (diff)
downloaddeployment-7ca877b9192cf70c1e35c1126fecc7d0df96e7f3.tar.gz
deployment-7ca877b9192cf70c1e35c1126fecc7d0df96e7f3.tar.bz2
deployment-7ca877b9192cf70c1e35c1126fecc7d0df96e7f3.zip
Changing c['www'] definition style
Diffstat (limited to 'buildbot')
-rw-r--r--buildbot/master-lonelyslave.cfg14
1 files changed, 7 insertions, 7 deletions
diff --git a/buildbot/master-lonelyslave.cfg b/buildbot/master-lonelyslave.cfg
index da9ad4a..139c109 100644
--- 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"