2019-07-22 10:20:59 +03:00
|
|
|
|
# This Python file uses the following encoding: utf-8
|
|
|
|
|
from BuildBotLib.buildBotModule import *
|
|
|
|
|
from buildbot.plugins import util
|
|
|
|
|
from buildbot.plugins import changes
|
2019-08-15 09:55:50 +03:00
|
|
|
|
import os
|
2019-07-22 10:20:59 +03:00
|
|
|
|
|
|
|
|
|
class buildBotChangeSource(BuildBotModule):
|
|
|
|
|
def __init__(self):
|
|
|
|
|
BuildBotModule.__init__(self)
|
|
|
|
|
|
|
|
|
|
self.masterConf['change_source'] = [
|
|
|
|
|
changes.GitPoller(
|
|
|
|
|
repourl = 'git@github.com:QuasarApp/Snake.git',
|
2019-07-24 11:50:31 +03:00
|
|
|
|
project = 'qmake-Snake',
|
2019-08-15 09:59:22 +03:00
|
|
|
|
gitbin = os.path.dirname(os.path.realpath(__file__)) + "/git/gitBin.sh",
|
2019-07-22 10:20:59 +03:00
|
|
|
|
branches = True, # получаем изменения со всех веток
|
|
|
|
|
pollInterval = 60
|
|
|
|
|
),
|
|
|
|
|
changes.GitPoller(
|
|
|
|
|
repourl = 'git@github.com:QuasarApp/Console-QtDeployer.git',
|
2019-07-24 11:50:31 +03:00
|
|
|
|
project = 'qmake-CQtDeployer',
|
2019-08-15 09:59:22 +03:00
|
|
|
|
gitbin = os.path.dirname(os.path.realpath(__file__)) + "/git/gitBin.sh",
|
2019-07-22 10:20:59 +03:00
|
|
|
|
branches = True, # получаем изменения со всех веток
|
|
|
|
|
pollInterval = 61
|
|
|
|
|
),
|
|
|
|
|
changes.GitPoller(
|
|
|
|
|
repourl = 'git@github.com:QuasarApp/Qt-Secret.git',
|
2019-07-24 11:50:31 +03:00
|
|
|
|
project = 'qmake-Qt-Secret',
|
2019-08-15 09:55:50 +03:00
|
|
|
|
gitbin = os.path.dirname(os.path.realpath(__file__)) + "/git/gitBin.sh",
|
2019-07-22 10:20:59 +03:00
|
|
|
|
branches = True, # получаем изменения со всех веток
|
|
|
|
|
pollInterval = 62
|
|
|
|
|
),
|
|
|
|
|
changes.GitPoller(
|
|
|
|
|
repourl = 'git@github.com:QuasarApp/Hanoi-Towers.git',
|
2019-07-24 11:50:31 +03:00
|
|
|
|
project = 'qmake-Hanoi-Towers',
|
2019-08-15 09:59:22 +03:00
|
|
|
|
gitbin = os.path.dirname(os.path.realpath(__file__)) + "/git/gitBin.sh",
|
2019-07-22 10:20:59 +03:00
|
|
|
|
branches = True, # получаем изменения со всех веток
|
|
|
|
|
pollInterval = 63
|
|
|
|
|
),
|
2019-07-22 21:44:12 +03:00
|
|
|
|
changes.GitPoller(
|
|
|
|
|
repourl = 'https://github.com/usermeme/chat-vironit.git',
|
2019-07-24 11:50:31 +03:00
|
|
|
|
project = 'npm-Chat',
|
2019-08-15 09:59:22 +03:00
|
|
|
|
gitbin = os.path.dirname(os.path.realpath(__file__)) + "/git/gitBin.sh",
|
2019-07-22 21:44:12 +03:00
|
|
|
|
branch = 'master',
|
|
|
|
|
pollInterval = 64
|
|
|
|
|
)
|
2019-07-22 10:20:59 +03:00
|
|
|
|
]
|
|
|
|
|
|