[Buildbot-devel] Is it possible to chain Dependent Schedulers?
Douglas Hubler
douglas at hubler.us
Sat Aug 1 18:34:52 UTC 2009
Rodney Stanton <rodneys at ...> writes:
> 4.5.3 Dependent Scheduler
> You can use “Dependencies” to express this relationship
> to the Buildbot.
from buildbot.scheduler import Nightly, Dependent
c['schedulers'] = []
nightly = Nightly('slot 1', ['acquia-drupal'], hour=[0], minute=0, branch="")
c['schedulers'].append(nightly)
installers = Dependent('installers', upstream = nightly,
builderNames = ["installer"]);
c['schedulers'].append(installers);
Where
'acquia-drupal' and "installer" are the names of two different builders
"installer" will build if "acquia-drupal" builds successfully at night
More information about the devel
mailing list