mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-04 20:54:48 +02:00

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>
24 lines
712 B
Python
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={}))
|