mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-04 20:54:48 +02:00
27 lines
769 B
Python
27 lines
769 B
Python
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
from buildbot.plugins import util
|
|
from yoctoabb 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={}, yocto_console_view={}, grid_view={}))
|
|
|
|
www = dict(port=config.web_port,
|
|
plugins=dict(waterfall_view={}, yocto_console_view={}, grid_view={}))
|