QuasarAppCI/master.cfg

52 lines
1.4 KiB
INI
Raw Permalink 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
2020-10-19 20:17:13 +03:00
from BuildBotLib.docs import Docs
2019-10-06 20:17:52 +03:00
from BuildBotLib.qmake import QMake
from BuildBotLib.qtUpdater import QtUpdater
2020-01-31 14:55:49 +03:00
from BuildBotLib.basemodule import BaseModule
2020-02-05 14:17:20 +03:00
from BuildBotLib.qifRepogen import QIFRepogen
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)
2020-04-15 10:04:03 +03:00
cmakeLinux = CMake(BaseModule.P_Linux)
cmakeWindows = CMake(BaseModule.P_Windows)
cmakeAndroid = CMake(BaseModule.P_Android)
2020-10-08 15:35:25 +03:00
wasm = CMake(BaseModule.P_Wasm)
2020-10-19 20:06:49 +03:00
docs = Docs(BaseModule.P_Linux)
2020-10-08 11:04:54 +03:00
2020-02-05 14:17:20 +03:00
repoGen = QIFRepogen()
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-04-15 10:04:03 +03:00
bot.addBuilder("LinuxCMakeBuilder", cmakeLinux)
bot.addBuilder("WindowsCMakeBuilder", cmakeWindows)
2021-04-11 10:29:56 +03:00
bot.addBuilder("AndroidBuilder_v7", cmakeAndroid)
bot.addBuilder("AndroidBuilder_v8", cmakeAndroid)
2020-04-15 10:04:03 +03:00
2020-02-03 14:49:55 +03:00
bot.addBuilder("RepoGen", repoGen)
2019-07-22 10:20:59 +03:00
2020-10-08 11:04:54 +03:00
bot.addBuilder("Wasm32Builder", wasm)
2020-10-19 20:06:49 +03:00
bot.addBuilder("DocsGenerator", docs)
2019-12-30 16:34:10 +03:00
2019-07-22 10:20:59 +03:00
c = BuildmasterConfig = bot.getMaster()