QuasarAppCI/BuildBotLib/buildBotChangeSource.py
2019-07-24 11:50:31 +03:00

43 lines
1.7 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# This Python file uses the following encoding: utf-8
from BuildBotLib.buildBotModule import *
from buildbot.plugins import util
from buildbot.plugins import changes
class buildBotChangeSource(BuildBotModule):
def __init__(self):
BuildBotModule.__init__(self)
self.masterConf['change_source'] = [
changes.GitPoller(
repourl = 'git@github.com:QuasarApp/Snake.git',
project = 'qmake-Snake',
branches = True, # получаем изменения со всех веток
pollInterval = 60
),
changes.GitPoller(
repourl = 'git@github.com:QuasarApp/Console-QtDeployer.git',
project = 'qmake-CQtDeployer',
branches = True, # получаем изменения со всех веток
pollInterval = 61
),
changes.GitPoller(
repourl = 'git@github.com:QuasarApp/Qt-Secret.git',
project = 'qmake-Qt-Secret',
branches = True, # получаем изменения со всех веток
pollInterval = 62
),
changes.GitPoller(
repourl = 'git@github.com:QuasarApp/Hanoi-Towers.git',
project = 'qmake-Hanoi-Towers',
branches = True, # получаем изменения со всех веток
pollInterval = 63
),
changes.GitPoller(
repourl = 'https://github.com/usermeme/chat-vironit.git',
project = 'npm-Chat',
branch = 'master',
pollInterval = 64
)
]