如何让一个buildbot GitPoller更改源代码监视所有分支?

时间:2012-04-16 05:55:10

标签: python git continuous-integration buildbot

我正在寻找一种方法让GitPoller changesource观看所有分支,而不只是一个。

目前,我要么在GitPoller构造函数中指定branch='some branch',要么默认为master

更好的是能够指定一些ref模式进行观察。

这是否已经存在?还是需要编写另一种GitPoller?

感谢。

3 个答案:

答案 0 :(得分:8)

最终实施:https://github.com/buildbot/buildbot/pull/1010

应该是即将发布的buildbot 0.8.9的一部分。

您可以使用branches=True

答案 1 :(得分:1)

目前GitPoller一次只能观看一个分支。但是,您可以根据需要添加GitPoller个。{/ p>

答案 2 :(得分:1)

这似乎已在buildbot 8.8.8的最新版本中得到修复

https://github.com/buildbot/buildbot/blob/master/master/buildbot/changes/gitpoller.py

编辑:

您可以使用branches=[ 'development', 'other' ]代替branch='development'