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
|
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
|
|
|
|
2019-12-26 17:08:56 +03:00
|
|
|
qmake = QMake()
|
|
|
|
asssetsinstaller = AsssetsInstaller()
|
|
|
|
qtUpdater = QtUpdater()
|
2019-10-06 20:17:52 +03:00
|
|
|
|
2019-12-26 17:08:56 +03:00
|
|
|
bot.addBuilder("github-worker", qmake)
|
|
|
|
bot.addBuilder("Tester", qmake)
|
|
|
|
bot.addBuilder("qtBuilder", qtUpdater)
|
|
|
|
bot.addBuilder("assets-builder", asssetsinstaller)
|
2019-07-22 10:20:59 +03:00
|
|
|
|
|
|
|
c = BuildmasterConfig = bot.getMaster()
|
|
|
|
|