4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-08 11:19:41 +00:00

remove deprecated qmake workers

This commit is contained in:
Andrei Yankovich 2022-10-17 17:56:30 +03:00
parent feb72adab9
commit 08f914497d
2 changed files with 10 additions and 8 deletions

@ -15,8 +15,8 @@ class BuildBotIdentity(BuildBotModule):
BuildBotModule.__init__(self, masterConf)
self.masterConf['title'] = "QuasarApp CI"
cqtdeployer_path = 'https://github.com/QuasarApp/CQtDeployer'
self.masterConf['titleURL'] = cqtdeployer_path
quasarapp_path = 'https://github.com/QuasarApp'
self.masterConf['titleURL'] = quasarapp_path
# the 'buildbotURL' string should point to the
# location where the buildbot's
@ -33,7 +33,9 @@ class BuildBotIdentity(BuildBotModule):
plugins=dict(
waterfall_view={},
console_view={},
grid_view={}))
grid_view={}
)
)
scr = SecretManager(str(Path.home()) + "/buildBotSecret/secret.json")

@ -22,9 +22,9 @@ from BuildBotLib.releaser import Releaser
bot = BuildBot()
qmakeLinux = QMake(BaseModule.P_Linux)
qmakeWindows = QMake(BaseModule.P_Windows)
qmakeAndroid = QMake(BaseModule.P_Android)
//qmakeLinux = QMake(BaseModule.P_Linux)
//qmakeWindows = QMake(BaseModule.P_Windows)
//qmakeAndroid = QMake(BaseModule.P_Android)
cmakeLinux = CMake(BaseModule.P_Linux)
cmakeWindows = CMake(BaseModule.P_Windows)
@ -40,8 +40,8 @@ repoGen = QIFRepogen()
release = Releaser()
bot.addBuilder("LinuxBuilder", qmakeLinux)
bot.addBuilder("WindowsBuilder", qmakeWindows)
//bot.addBuilder("LinuxBuilder", qmakeLinux)
//bot.addBuilder("WindowsBuilder", qmakeWindows)
bot.addBuilder("LinuxCMakeBuilder", cmakeLinux)
bot.addBuilder("LinuxCMakeBuilderQt6", cmakeLinux)