# This Python file uses the following encoding: utf-8 from BuildBotLib.buildBotModule import BuildBotModule from buildbot.plugins import reporters, util from BuildBotLib.secretManager import SecretManager from pathlib import Path class BuildBotServices(BuildBotModule): def __init__(self, masterConf): BuildBotModule.__init__(self, masterConf) # BUILDBOT SERVICES # 'services' is a list of BuildbotService # items like reporter targets. The # status of each build will be pushed to these targets. # buildbot/reporters/*.py # has a variety to choose from, like IRC bots. self.masterConf['services'] = [] secretPath = str(Path.home()) + "/buildBotSecret/secret.json" secret = SecretManager(secretPath) contextVal = util.Interpolate("buildbot/%(prop:buildername)s") gc = reporters.GitHubStatusPush(token=secret.getValue('gitHub'), context=contextVal, verbose=True, startDescription='Build started.', endDescription='Build done.') self.masterConf['services'].append(gc)