mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-04-26 13:54:31 +00:00
24 lines
648 B
Python
24 lines
648 B
Python
# -*- 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");
|
|
bot.addBuilder("NPM", "NPM");
|
|
bot.addBuilder("assets-builder", "asssetsinstaller");
|
|
|
|
c = BuildmasterConfig = bot.getMaster()
|
|
|