diff --git a/BuildBotLib/buildBotChangeSource.py b/BuildBotLib/buildBotChangeSource.py index ee8d879..fe624c6 100644 --- a/BuildBotLib/buildBotChangeSource.py +++ b/BuildBotLib/buildBotChangeSource.py @@ -32,5 +32,11 @@ class buildBotChangeSource(BuildBotModule): branches = True, # получаем изменения со всех веток pollInterval = 63 ), + changes.GitPoller( + repourl = 'https://github.com/usermeme/chat-vironit.git', + project = 'Chat', + branch = 'master', + pollInterval = 64 + ) ] diff --git a/BuildBotLib/buildBotIdentity.py b/BuildBotLib/buildBotIdentity.py index 83b9dca..ca41d48 100644 --- a/BuildBotLib/buildBotIdentity.py +++ b/BuildBotLib/buildBotIdentity.py @@ -36,7 +36,7 @@ class buildBotIdentity(BuildBotModule): roleMatchers = [ util.RolesFromUsername(roles=['admins'], usernames=['EndrII']), util.RolesFromUsername(roles=['admins'], usernames=['ZIG']), - util.ForceBuildEndpointMatcher(roles=['user'], usernames=['Roma']) + util.ForceBuildEndpointMatcher(roles=['user'], usernames=['Roma']), util.StopBuildEndpointMatcher(roles=['user'], usernames=['Roma']) ] diff --git a/BuildBotLib/buildBotShedulers.py b/BuildBotLib/buildBotShedulers.py index 45a4433..01d1944 100644 --- a/BuildBotLib/buildBotShedulers.py +++ b/BuildBotLib/buildBotShedulers.py @@ -42,7 +42,7 @@ class buildBotShedulers(BuildBotModule): ), schedulers.SingleBranchScheduler( name='NPM Deployer', - change_filter=util.ChangeFilter(branch='master') + change_filter=util.ChangeFilter(branch='master', project='Chat') builderNames=['NPM'], properties = [] treeStableTimer = None