我正在寻找一种方法让GitPoller changesource
观看所有分支,而不只是一个。
目前,我要么在GitPoller构造函数中指定branch='some branch'
,要么默认为master
。
更好的是能够指定一些ref
模式进行观察。
这是否已经存在?还是需要编写另一种GitPoller?
感谢。
答案 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'