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
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
|
|
bot = BuildBot();
|
|
|
|
bot.addBuilder("github-worker", "qmake");
|
|
|
|
bot.addBuilder("Tester", "qmake");
|
|
|
|
bot.addBuilder("qtBuilder", "qtUpdater");
|
2019-07-22 21:01:26 +03:00
|
|
|
bot.addBuilder("NPM", "NPM");
|
2019-12-13 16:15:04 +03:00
|
|
|
bot.addBuilder("assets-builder", "asssetsinstaller");
|
2019-07-22 10:20:59 +03:00
|
|
|
|
|
|
|
c = BuildmasterConfig = bot.getMaster()
|
|
|
|
|