mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-04-29 15:14:33 +00:00
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
# This Python file uses the following encoding: utf-8
|
|
from BuildBotLib.buildBotModule import BuildBotModule
|
|
from buildbot.plugins import changes
|
|
import os
|
|
from BuildBotLib.secretManager import SecretManager
|
|
|
|
|
|
class BuildBotChangeSource(BuildBotModule):
|
|
def __init__(self):
|
|
BuildBotModule.__init__(self)
|
|
|
|
secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
|
|
|
|
# self.masterConf['www']['change_hook_dialects'] = [
|
|
# { 'github': {
|
|
# 'secret': secret.getValue('WebHook'),
|
|
# 'strict': True,
|
|
# },
|
|
# },
|
|
# ]
|
|
|
|
# self.masterConf['www']['change_hook_dialects'] = [
|
|
# { 'github': {
|
|
# 'secret': secret.getValue('WebHook'),
|
|
# 'strict': True,
|
|
# },
|
|
# },
|
|
# ]
|
|
# change_hook_dialects={'github': {}},
|
|
|
|
self.masterConf['www'] = dict(
|
|
change_hook_dialects={'github': {
|
|
'secret': secret.getValue('WebHook'),
|
|
'token': secret.getValue('gitHub'),
|
|
'strict': True,
|
|
}
|
|
},
|
|
)
|