Ticket #294 (closed enhancement: invalid)
Builds are started in random order
| Reported by: | dan | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | undecided |
| Version: | 0.7.7 | Keywords: | |
| Cc: |
Description
From BotMaster?:
def maybeStartAllBuilds(self):
for b in self.builders.values():
b.maybeStartBuild()
builders is a dictionary. With a given configuration, this will always start new pending builds in the same order (as slaves become available), but it's not the order the builders were declared in the configuration file. The waterfall would be much nicer if they went generally in order.
All it should take is:
def maybeStartAllBuilds(self):
for b in self.getBuilders():
b.maybeStartBuild()
Change History
Note: See
TracTickets for help on using
tickets.
![[Buildbot Logo]](/trac/chrome/site/header-text-transparent.png)