mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-05-10 04:09:36 +00:00
fix modules of build bot
This commit is contained in:
parent
c0686d1deb
commit
bce92a37b2
@ -4,8 +4,8 @@ from BuildBotLib.secretManager import SecretManager
|
||||
|
||||
|
||||
class BuildBotChangeSource(BuildBotModule):
|
||||
def __init__(self):
|
||||
BuildBotModule.__init__(self)
|
||||
def __init__(self, masterConf):
|
||||
BuildBotModule.__init__(self, masterConf)
|
||||
|
||||
secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
|
||||
|
||||
|
@ -3,8 +3,8 @@ from BuildBotLib.buildBotModule import BuildBotModule
|
||||
|
||||
|
||||
class BuildBotDB(BuildBotModule):
|
||||
def __init__(self):
|
||||
BuildBotModule.__init__(self)
|
||||
def __init__(self, masterConf):
|
||||
BuildBotModule.__init__(self, masterConf)
|
||||
|
||||
# DB URL
|
||||
|
||||
|
@ -10,8 +10,8 @@ from buildbot.plugins import util
|
||||
# home pages (linked to the 'titleURL').
|
||||
|
||||
class BuildBotIdentity(BuildBotModule):
|
||||
def __init__(self):
|
||||
BuildBotModule.__init__(self)
|
||||
def __init__(self, masterConf):
|
||||
BuildBotModule.__init__(self, masterConf)
|
||||
|
||||
self.masterConf['title'] = "QuasarApp CI"
|
||||
cqtdeployer_path = 'https://github.com/QuasarApp/CQtDeployer'
|
||||
|
@ -5,8 +5,8 @@ from BuildBotLib.secretManager import SecretManager
|
||||
|
||||
|
||||
class BuildBotServices(BuildBotModule):
|
||||
def __init__(self):
|
||||
BuildBotModule.__init__(self)
|
||||
def __init__(self, masterConf):
|
||||
BuildBotModule.__init__(self, masterConf)
|
||||
|
||||
# BUILDBOT SERVICES
|
||||
|
||||
|
@ -7,8 +7,8 @@ from pathlib import Path
|
||||
|
||||
|
||||
class BuildBotWorkers(BuildBotModule):
|
||||
def __init__(self):
|
||||
BuildBotModule.__init__(self)
|
||||
def __init__(self, masterConf):
|
||||
BuildBotModule.__init__(self, masterConf)
|
||||
# WORKERS
|
||||
|
||||
# The 'workers' list defines the set
|
||||
|
Loading…
x
Reference in New Issue
Block a user