diff --git a/BuildBotLib/buildBotChangeSource.py b/BuildBotLib/buildBotChangeSource.py index 2c304fd..6be1716 100644 --- a/BuildBotLib/buildBotChangeSource.py +++ b/BuildBotLib/buildBotChangeSource.py @@ -12,12 +12,14 @@ class buildBotChangeSource(BuildBotModule): changes.GitPoller( repourl = 'git@github.com:QuasarApp/Snake.git', project = 'qmake-Snake', + gitbin = os.path.dirname(os.path.realpath(__file__)) + "/git/gitBin.sh", branches = True, # получаем изменения со всех веток pollInterval = 60 ), changes.GitPoller( repourl = 'git@github.com:QuasarApp/Console-QtDeployer.git', project = 'qmake-CQtDeployer', + gitbin = os.path.dirname(os.path.realpath(__file__)) + "/git/gitBin.sh", branches = True, # получаем изменения со всех веток pollInterval = 61 ), @@ -31,12 +33,14 @@ class buildBotChangeSource(BuildBotModule): changes.GitPoller( repourl = 'git@github.com:QuasarApp/Hanoi-Towers.git', project = 'qmake-Hanoi-Towers', + gitbin = os.path.dirname(os.path.realpath(__file__)) + "/git/gitBin.sh", branches = True, # получаем изменения со всех веток pollInterval = 63 ), changes.GitPoller( repourl = 'https://github.com/usermeme/chat-vironit.git', project = 'npm-Chat', + gitbin = os.path.dirname(os.path.realpath(__file__)) + "/git/gitBin.sh", branch = 'master', pollInterval = 64 )