yocto-autobuilder2/www.py
Joshua Lock 4fd189ab38 Initial prototype of using yocto-autobuilder-helper scripts
Initial prototype of using yocto-autobuilder-helper scripts from vanilla
buildbot to replicate yocto-autobuilder configuration.

* README.md is updated to describe goals and approach
* TODO contains known issues and work items, TODO: comments in the code
  point to specific locations of work

Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
2018-02-22 10:38:19 +00:00

24 lines
712 B
Python

from buildbot.plugins import util
from yoctoab import config
# allow = []
#
# for builder in config.builders:
# allow.append(util.ForceBuildEndpointMatcher(builder=builder, role='*'))
# allow.append(util.StopBuildEndpointMatcher(builder=builder, role='*'))
#
# authz = util.Authz(
# stringsMatcher=util.fnmatchStrMatcher,
# allowRules=allow,
# roleMatchers=[])
# auth = util.HTPasswdAuth('/home/pokybuild/.htpasswd')
#
# www = dict(port=config.web_port,
# auth=auth,
# authz=authz,
# plugins=dict(waterfall_view={}, console_view={}, grid_view={}))
www = dict(port=config.web_port,
plugins=dict(waterfall_view={}, console_view={}, grid_view={}))