<aakashjain>
Seems like the list of changes between v2.8.4 and v2.9.0 is huge. It would be nice if we can identify the specific change which caused it.
<felixfontein>
if you don't mind running buildbot from git, you could use git bisect
<aakashjain>
felixfontein: how exactly?
<felixfontein>
aakashjain: you could install buildbot from source (check git repository out and run `pip install -e .`)
<felixfontein>
then you can use `git bisect`, and for every step start buildbot, see whether the bug is present or not, stop buildbot, do another bisect step, etc.
jcarl43 has joined #buildbot
mpbridge_ has joined #buildbot
cbaines has quit [Ping timeout: 245 seconds]
mbrndtgn has quit [Ping timeout: 245 seconds]
mbrndtgn has joined #buildbot
jmbb has quit [Ping timeout: 240 seconds]
alicef_ has quit [Ping timeout: 258 seconds]
flx has quit [Remote host closed the connection]
cbaines has joined #buildbot
TurBoss has quit [Ping timeout: 268 seconds]
mpbridge has quit [Ping timeout: 245 seconds]
flx has joined #buildbot
<aakashjain>
felixfontein: ok
<aakashjain>
tardyp, p12tic, felixfontein: will there be 2.10.4 release as well in future (or only 3.x release)?
<p12tic>
depends on the bugs discovered
<p12tic>
the above bug seems reasonable to include to 2.10.x
<aakashjain>
p12tic: cool. There are some more issues which I am looking into, might submit PR soon. Would be nice to have 2.10.x release to include them.
<aakashjain>
we can't easily upgrade to 3.x, so would be nice to have 2.10.x release so that we can get the fixes.
<p12tic>
I would recommend to use --first-parent with git bisect so that it only checks things on the master branch
<wzzrd>
hi folks, I was wondering: is it possible at all to have a build execute simultaneously on multiple hosts? I have various architectures and operating systems I want to build and package for using buildbot, so I want a build to happen on eacht OS / architecture combination.
<wzzrd>
Do I need to set up factories and workers for each combo?
<wzzrd>
sorry: builders
<wzzrd>
or can I put all builders in a single builderconfig and make a build run on all workers in that builder config?
<wzzrd>
might be a silly question :/
<bdbaddog>
yes. you can definitely run the same build on a bunch of platforms. That's probably among the most common usages.
<wzzrd>
ah great
<wzzrd>
i'm having a little trouble finding the right docs for that then, I guess
<wzzrd>
thanks for confirming
<bdbaddog>
you'll configure your workers, a scheduler(or more), builder(s), buildfactory(s)