mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-04-26 13:54:31 +00:00
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
# This Python file uses the following encoding: utf-8
|
|
|
|
from BuildBotLib.buildBotModule import BuildBotModule
|
|
from buildbot.plugins import worker
|
|
from BuildBotLib.secretManager import SecretManager
|
|
|
|
|
|
class BuildBotWorkers(BuildBotModule):
|
|
def __init__(self):
|
|
BuildBotModule.__init__(self)
|
|
# WORKERS
|
|
|
|
# The 'workers' list defines the set
|
|
# of recognized workers. Each element is
|
|
# a Worker object, specifying a unique worker
|
|
# name and password. The same
|
|
# worker name and password must be configured on the worker.
|
|
secret = SecretManager(self.home + "/buildBotSecret/secret.json")
|
|
|
|
password = secret.getValue('WorkerPass')
|
|
|
|
self.masterConf['workers'] = [
|
|
worker.Worker("AndroidBuilder", password),
|
|
worker.Worker("LinuxBuilder", password),
|
|
worker.Worker("WindowBuilder", password),
|
|
]
|
|
|
|
# 'protocols' contains information
|
|
# about protocols which master will use for
|
|
# communicating with workers.
|
|
# You must define at least 'port' option that workers
|
|
# could connect to your master with this protocol.
|
|
# 'port' must match the value configured into the workers (with their
|
|
# --master option)
|
|
|
|
self.masterConf['protocols'] = {'pb': {'port': 9989}}
|