| OLD | NEW |
| 1 """ This file contains configuration information for the build slave host | 1 """ This file contains configuration information for the build slave host |
| 2 machines. """ | 2 machines. """ |
| 3 | 3 |
| 4 | 4 |
| 5 # Files to copy into buildslave checkouts. | 5 # Files to copy into buildslave checkouts. |
| 6 _DEFAULT_COPIES = [ | 6 _DEFAULT_COPIES = [ |
| 7 { | 7 { |
| 8 "source": ".boto", | 8 "source": ".boto", |
| 9 "destination": "buildbot/third_party/chromium_buildbot/site_config", | 9 "destination": "buildbot/third_party/chromium_buildbot/site_config", |
| 10 }, | 10 }, |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 ('skiabot-shuttle-ubuntu12-xoom-001', '3'), | 39 ('skiabot-shuttle-ubuntu12-xoom-001', '3'), |
| 40 ('skiabot-shuttle-ubuntu12-xoom-002', '4'), | 40 ('skiabot-shuttle-ubuntu12-xoom-002', '4'), |
| 41 ('skiabot-shuttle-ubuntu12-xoom-003', '5'), | 41 ('skiabot-shuttle-ubuntu12-xoom-003', '5'), |
| 42 ('skiabot-shuttle-ubuntu12-galaxynexus-001', '6'), | 42 ('skiabot-shuttle-ubuntu12-galaxynexus-001', '6'), |
| 43 ('skiabot-shuttle-ubuntu12-nexus4-001', '7'), | 43 ('skiabot-shuttle-ubuntu12-nexus4-001', '7'), |
| 44 ('skiabot-shuttle-ubuntu12-nexus7-001', '8'), | 44 ('skiabot-shuttle-ubuntu12-nexus7-001', '8'), |
| 45 ('skiabot-shuttle-ubuntu12-nexus7-002', '9'), | 45 ('skiabot-shuttle-ubuntu12-nexus7-002', '9'), |
| 46 ('skiabot-shuttle-ubuntu12-nexus7-003', '10'), | 46 ('skiabot-shuttle-ubuntu12-nexus7-003', '10'), |
| 47 ('skiabot-shuttle-ubuntu12-nexus10-001', '11'), | 47 ('skiabot-shuttle-ubuntu12-nexus10-001', '11'), |
| 48 ('skiabot-shuttle-ubuntu12-nexus10-003', '12'), | 48 ('skiabot-shuttle-ubuntu12-nexus10-003', '12'), |
| 49 ('skiabot-shuttle-ubuntu12-razri-001', '13'), | 49 ('skiabot-shuttle-ubuntu12-intel-rhb-001', '13'), |
| 50 ], | 50 ], |
| 51 'copies': _DEFAULT_COPIES, | 51 'copies': _DEFAULT_COPIES, |
| 52 'ip': '192.168.1.110', | 52 'ip': '192.168.1.110', |
| 53 'kvm_num': '8', | 53 'kvm_num': '8', |
| 54 }, | 54 }, |
| 55 | 55 |
| 56 'skiabot-shuttle-ubuntu12-xxx': { | 56 'skiabot-shuttle-ubuntu12-xxx': { |
| 57 'slaves': [ | 57 'slaves': [ |
| 58 ('skiabot-shuttle-ubuntu12-000', '0'), | 58 ('skiabot-shuttle-ubuntu12-000', '0'), |
| 59 ('skiabot-shuttle-ubuntu12-001', '1'), | 59 ('skiabot-shuttle-ubuntu12-001', '1'), |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 host machine. If no configuration exists for the given hostname, return a | 366 host machine. If no configuration exists for the given hostname, return a |
| 367 default. | 367 default. |
| 368 | 368 |
| 369 hostname: string; the hostname of the slave host machine. | 369 hostname: string; the hostname of the slave host machine. |
| 370 """ | 370 """ |
| 371 default_cfg = { | 371 default_cfg = { |
| 372 'slaves': [(hostname, '0')], | 372 'slaves': [(hostname, '0')], |
| 373 'copies': _DEFAULT_COPIES, | 373 'copies': _DEFAULT_COPIES, |
| 374 } | 374 } |
| 375 return SLAVE_HOSTS.get(hostname, default_cfg) | 375 return SLAVE_HOSTS.get(hostname, default_cfg) |
| OLD | NEW |