如何在我的 buildbot master.cfg 中设置 collapseRequests

How can I set collapseRequests in my buildbot master.cfg

我尝试在我的 buildbot master.cfg 中设置 collapseRequests,但是当我添加

c['collapseRequests'] = True

错误显示“Unknown BuildmasterConfig key collapseRequests”;

当我尝试在 BuilderConfig 中添加 collapseRequests 时,使用

c['builders'].append(BuilderConfig(..., collapseRequests=True))

错误显示“__init__() 得到了意外的关键字参数 'collapseRequests'(日志文件中的回溯)

有什么建议吗?

谢谢。

可能您使用的 Buildbot 版本不支持 collapseRequests。如果我Google找它,我只能在documentation for the development version of Buildbot. If you check that page, you'll see at the top there's a warning that the documentation is for the development version of Buildbot and there's a link to the documentation of the latest released version里找参考。

最新发布的版本(在撰写此答案时)为 0.8.12,不支持 collapseRequests。它支持的是 mergeRequests.