[Buildbot-commits] [Buildbot] #2219: Make sample configuration modular.

Buildbot nobody at buildbot.net
Thu Feb 23 17:01:55 UTC 2012


#2219: Make sample configuration modular.
------------------------+---------------------
Reporter:  tom.prince   |       Owner:  config
    Type:  enhancement  |      Status:  new
Priority:  major        |   Milestone:  0.9.0
 Version:  0.8.5        |  Resolution:
Keywords:               |
------------------------+---------------------

Comment (by bdbaddog):

 I've got a pretty stable modular config which handles reconfig's well.
 The main trick was to get rid of :

 {{{
 from XYZ import a,b,c
 }}}

 Since those aren't re-evaluated on reconfig. However doing something like:
 {{{
 import XYZ
 a=XYZ.a
 b=XYZ.b
 c=XYZ.c
 }}}

 Seems to handle reconfig well.

-- 
Ticket URL: <http://trac.buildbot.net/ticket/2219#comment:3>
Buildbot <http://buildbot.net/>
Buildbot: build/test automation


More information about the Commits mailing list