This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Set up "supported"-only buildbot waterfall view
Type: Stage:
Components: None Versions:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: exarkun
Priority: normal Keywords:

Created on 2008-03-18 01:00 by exarkun, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg63832 - (view) Author: Jean-Paul Calderone (exarkun) * (Python committer) Date: 2008-03-18 01:00
The Python buildbot's waterfall view currently shows all builders.  Not
all of these are expected to work currently.  This can be confusing to
people trying to understand the current state of Python on various
platforms.  Buildbot can be configured to present limited views, for
example only including builders for platforms where all the tests are
expected to be passing (and expected to remain passing).

The way to place a builder in a particular category is with the
"category" keyword in its dict:

    builders.append({
              'name': 'foo',
              'factory': bar
              'category': 'unsupported'})

With 0.7.5, adding a "category" query argument will restrict the view to
include only builders from the specified category.

With 0.7.6, you can construct a custom
buildbot.status.web.waterfall.WaterfallStatusResource and pass a list
for the categories initializer argument which will restrict the builders
it displays.  You can make several of these for different categories and
put them at various places in the resource hierarchy.
msg89282 - (view) Author: Jean-Paul Calderone (exarkun) * (Python committer) Date: 2009-06-12 15:40
This was done long ago, it seems.
History
Date User Action Args
2022-04-11 14:56:32adminsetgithub: 46629
2009-06-12 15:40:50exarkunsetstatus: open -> closed

messages: + msg89282
2008-03-18 01:00:27exarkuncreate