Using buildbot slaves -
i saw waterfall display buildbot have builds , tests categorized device types. how type of display. buildbot automatically generate different columns different slaves? right using 1 slave , handling scheduling of tests python script. possible use buildbot slaves achieve parallel tests?
in waterfall page buildbot generates columns per builder. can add , configure builders in master.cfg file. have @ this more info.
you can achive parallel builds adding multiple builders slave, , in slave configuration increasing max_builds parameter like`
config['slaves'].append(buildslave('my-slave', 'password', max_builds=5))
this allow run 5 builds in parallel example.
Comments
Post a Comment