<div dir="ltr"><div><div>How do you collapse builds so Buildbot doesn't build every single commit separately for a branch? It should also cancel a running build for a branch if there's a newer commit pending.<br><br></div>My builder looks like:<br><br>c['builders'].append(<br>    util.BuilderConfig(<br>        name="runtests",<br>        workernames=["example-worker"],<br>        collapseRequests=True,<br>        factory=factory))<br><br></div>I thought collapseRequests=True did this, but it seems to have no effect. Every commit to a branch shows up as a separate pending build.<br></div>