Chromium Code Reviews| 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 }, |
| 11 { | 11 { |
| 12 "source": ".boto_cros", | |
| 13 "destination": "buildbot/site_config", | |
|
borenet
2013/06/26 20:06:28
Should have already been removed...
| |
| 14 }, | |
| 15 { | |
| 16 "source": ".autogen_svn_username", | 12 "source": ".autogen_svn_username", |
| 17 "destination": "buildbot/site_config", | 13 "destination": "buildbot/site_config", |
| 18 }, | 14 }, |
| 19 { | 15 { |
| 20 "source": ".autogen_svn_password", | 16 "source": ".autogen_svn_password", |
| 21 "destination": "buildbot/site_config", | 17 "destination": "buildbot/site_config", |
| 22 }, | 18 }, |
| 23 ] | 19 ] |
| 24 | 20 |
| 25 | 21 |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 50 'skiabot-shuttle-ubuntu12-nexus10-003', | 46 'skiabot-shuttle-ubuntu12-nexus10-003', |
| 51 'skiabot-shuttle-ubuntu12-razri-001', | 47 'skiabot-shuttle-ubuntu12-razri-001', |
| 52 ], | 48 ], |
| 53 'copies': DEFAULT_COPIES, | 49 'copies': DEFAULT_COPIES, |
| 54 }, | 50 }, |
| 55 | 51 |
| 56 'skiabot-shuttle-ubuntu12-xxx': { | 52 'skiabot-shuttle-ubuntu12-xxx': { |
| 57 'slaves': [ | 53 'slaves': [ |
| 58 'skiabot-shuttle-ubuntu12-001', | 54 'skiabot-shuttle-ubuntu12-001', |
| 59 'skiabot-shuttle-ubuntu12-002', | 55 'skiabot-shuttle-ubuntu12-002', |
| 56 'skiabot-shuttle-ubuntu12-003', | |
| 57 'skiabot-shuttle-ubuntu12-004', | |
| 60 ], | 58 ], |
| 61 'copies': DEFAULT_COPIES, | 59 'copies': DEFAULT_COPIES, |
| 62 }, | 60 }, |
| 63 | 61 |
| 64 'skia-compile1-a': { | 62 'skia-compile1-a': { |
| 65 'slaves': [ | 63 'slaves': [ |
| 66 'skiabot-linux-compile-vm-000', | 64 'skiabot-linux-compile-vm-000', |
| 67 'skiabot-linux-compile-vm-001', | 65 'skiabot-linux-compile-vm-001', |
| 68 ], | 66 ], |
| 69 'copies': DEFAULT_COPIES, | 67 'copies': DEFAULT_COPIES, |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 291 host machine. If no configuration exists for the given hostname, return a | 289 host machine. If no configuration exists for the given hostname, return a |
| 292 default. | 290 default. |
| 293 | 291 |
| 294 hostname: string; the hostname of the slave host machine. | 292 hostname: string; the hostname of the slave host machine. |
| 295 """ | 293 """ |
| 296 default_cfg = { | 294 default_cfg = { |
| 297 'slaves': [hostname], | 295 'slaves': [hostname], |
| 298 'copies': DEFAULT_COPIES, | 296 'copies': DEFAULT_COPIES, |
| 299 } | 297 } |
| 300 return SLAVE_HOSTS.get(hostname, default_cfg) | 298 return SLAVE_HOSTS.get(hostname, default_cfg) |
| OLD | NEW |