QuasarAppCI/BuildBotLib/buildBotIdentity.py

53 lines
2.0 KiB
Python
Raw Normal View History

2019-07-22 10:20:59 +03:00
# This Python file uses the following encoding: utf-8
2019-12-26 13:48:06 +03:00
from BuildBotLib.buildBotModule import BuildBotModule
from BuildBotLib.secretManager import SecretManager
from buildbot.plugins import util
2019-07-22 10:20:59 +03:00
2019-12-26 13:48:06 +03:00
# PROJECT IDENTITY
2019-07-22 10:20:59 +03:00
# the 'title' string will appear at the top of this buildbot installation's
# home pages (linked to the 'titleURL').
2019-12-26 13:48:06 +03:00
class BuildBotIdentity(BuildBotModule):
2019-07-22 10:20:59 +03:00
def __init__(self):
self.masterConf['title'] = "QuasarApp CI"
2019-12-26 13:48:06 +03:00
cqtdeployer_path = 'https://github.com/QuasarApp/CQtDeployer'
self.masterConf['titleURL'] = cqtdeployer_path
# the 'buildbotURL' string should point to the
# location where the buildbot's
# internal web server is visible.
# This typically uses the port number set in
# the 'www' entry below,
# but with an externally-visible host name which the
2019-07-22 10:20:59 +03:00
# buildbot cannot figure out without some help.
self.masterConf['buildbotURL'] = "http://quasarapp.ddns.net:8010/"
# minimalistic config to activate new web UI
self.masterConf['www'] = dict(port=8010,
2019-12-26 13:48:06 +03:00
plugins=dict(
waterfall_view={},
console_view={},
2020-01-03 12:34:12 +03:00
grid_view={}))
2019-07-22 10:20:59 +03:00
self.masterConf['www']['authz'] = util.Authz(
2019-12-26 13:48:06 +03:00
allowRules=[
2020-01-03 18:51:31 +03:00
util.AnyEndpointMatcher(role="admins"),
util.ForceBuildEndpointMatcher(role="quasarcore"),
util.RebuildBuildEndpointMatcher(role="quasarcore")
2019-07-22 10:20:59 +03:00
],
2019-12-26 13:48:06 +03:00
roleMatchers=[
2020-01-03 18:51:31 +03:00
util.RolesFromGroups(groupPrefix='QuasarApp/'),
2020-01-03 12:55:17 +03:00
util.RolesFromEmails(admins=["endriimail@gmail.com"])
2019-07-22 21:36:02 +03:00
]
2019-07-22 10:20:59 +03:00
)
2019-07-22 12:01:57 +03:00
2019-07-22 17:05:28 +03:00
secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
2019-07-22 16:56:56 +03:00
2020-01-03 18:51:31 +03:00
self.masterConf['www']['auth'] = util.GitHubAuth(
secret.getValue("QuasarAppCIID"),
secret.getValue("QuasarAppCIToken"),
apiVersion=4, getTeamsMembership=True)