The buildbot grid can be found buildbot.dovetail-automata.com/grid and this knowledge is very usefull if you make a PR because you can see if or why a build fails.
As you are making a change or improvement you are the one who knows what your change is about. So it should be relatively easy for you to fix your PR in case of a failed build so that your PR can be built.
Here’s an example of a PR which initially failed. It was a PR where a lot of
files were renamed from .txt
to .asciidoc
.
go to your PR and take note of the number (in this case it was #400). This you need to know if you want to see interpret the buildbot.
go to the buildbot grid where you can find the specific PR number. you can clearly see that it failed.
correct your error (like renaming an line with .txt
to .asciidoc
reference) and push your commit to the branch for which you made the PR.
This will ensure that the updated branch gets rebuilt by the buildbot. Enabling
you to see if the correction was sufficient.