comparison master.cfg @ 14:24e67c30e215

syntax update for buildbot 2.7
author John W. Eaton <jwe@octave.org>
date Tue, 26 May 2020 16:11:32 +0000
parents 9f694d100a7b
children cbcd3693ff0e
comparison
equal deleted inserted replaced
13:9f694d100a7b 14:24e67c30e215
38 38
39 import octave_buildbot_config 39 import octave_buildbot_config
40 40
41 c["workers"] = [] 41 c["workers"] = []
42 42
43 for worker, info in octave_buildbot_config.workers.iteritems (): 43 for worker, info in octave_buildbot_config.workers.items ():
44 c["workers"].append (Worker (worker, info["pass"], max_builds = info["max_builds"])) 44 c["workers"].append (Worker (worker, info["pass"], max_builds = info["max_builds"]))
45 45
46 ## 'protocols' contains information about protocols which master will 46 ## 'protocols' contains information about protocols which master will
47 ## use for communicating with workers. You must define at least 'port' 47 ## use for communicating with workers. You must define at least 'port'
48 ## option that workers could connect to your master with this protocol. 48 ## option that workers could connect to your master with this protocol.