4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-05 09:49:37 +00:00

33 lines
929 B
INI
Raw Normal View History

2019-07-22 10:20:59 +03:00
# -*- python -*-
# ex: set filetype=python:
from buildbot.plugins import *
from BuildBotLib.buildbot import *
from buildbot.www import authz, auth
2019-10-06 20:17:52 +03:00
from BuildBotLib.cmake import CMake
from BuildBotLib.qmake import QMake
2019-12-26 17:08:56 +03:00
from BuildBotLib.asssetsinstaller import AsssetsInstaller
2019-10-06 20:17:52 +03:00
from BuildBotLib.qtUpdater import QtUpdater
2020-01-31 14:55:49 +03:00
from BuildBotLib.basemodule import BaseModule
2019-07-22 10:20:59 +03:00
# This is a sample buildmaster config file. It must be installed as
# 'master.cfg' in your buildmaster's base directory.
# This is the dictionary that the buildmaster pays attention to. We also use
# a shorter alias to save typing.
2019-12-26 17:08:56 +03:00
bot = BuildBot()
2019-10-06 20:17:52 +03:00
2020-01-31 14:55:49 +03:00
qmakeLinux = QMake(BaseModule.P_Linux)
qmakeWindows = QMake(BaseModule.P_Windows)
qmakeAndroid = QMake(BaseModule.P_Android)
2019-10-06 20:17:52 +03:00
2020-01-31 14:55:49 +03:00
bot.addBuilder("LinuxBuilder", qmakeLinux)
2020-02-01 19:28:57 +03:00
bot.addBuilder("WindowsBuilder", qmakeWindows)
2020-01-31 14:55:49 +03:00
bot.addBuilder("AndroidBuilder", qmakeAndroid)
2019-07-22 10:20:59 +03:00
2019-12-30 16:34:10 +03:00
2019-07-22 10:20:59 +03:00
c = BuildmasterConfig = bot.getMaster()