Issue2376
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) * ![]() |
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) * ![]() |
Date: 2009-06-12 15:40 | |
This was done long ago, it seems. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:56:32 | admin | set | github: 46629 |
| 2009-06-12 15:40:50 | exarkun | set | status: open -> closed messages: + msg89282 |
| 2008-03-18 01:00:27 | exarkun | create | |
