| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright 2015 The Chromium Authors. All rights reserved. | 4 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 import config | 8 import config |
| 9 import master_site_config | 9 import master_site_config |
| 10 | 10 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 'factory': m_remote_run('infra_continuous', revision=revision_getter), | 89 'factory': m_remote_run('infra_continuous', revision=revision_getter), |
| 90 'category': '1continuous', | 90 'category': '1continuous', |
| 91 }, | 91 }, |
| 92 { | 92 { |
| 93 'name': 'infra-continuous-trusty-64', | 93 'name': 'infra-continuous-trusty-64', |
| 94 'slavebuilddir': 'infra-continuous', | 94 'slavebuilddir': 'infra-continuous', |
| 95 'factory': m_remote_run('infra_continuous', revision=revision_getter), | 95 'factory': m_remote_run('infra_continuous', revision=revision_getter), |
| 96 'category': '1continuous', | 96 'category': '1continuous', |
| 97 }, | 97 }, |
| 98 { | 98 { |
| 99 'name': 'infra-continuous-trusty-64-perf', |
| 100 'slavebuilddir': 'infra-continuous', |
| 101 'factory': m_remote_run('isolate_go_perf', revision=revision_getter), |
| 102 'category': '1continuous', |
| 103 }, |
| 104 { |
| 99 'name': 'infra-continuous-trusty-32', | 105 'name': 'infra-continuous-trusty-32', |
| 100 'slavebuilddir': 'infra-continuous', | 106 'slavebuilddir': 'infra-continuous', |
| 101 'factory': m_remote_run('infra_continuous', revision=revision_getter), | 107 'factory': m_remote_run('infra_continuous', revision=revision_getter), |
| 102 'category': '1continuous', | 108 'category': '1continuous', |
| 103 }, | 109 }, |
| 104 { | 110 { |
| 105 'name': 'infra-continuous-precise-64', | 111 'name': 'infra-continuous-precise-64', |
| 106 'slavebuilddir': 'infra-continuous', | 112 'slavebuilddir': 'infra-continuous', |
| 107 'factory': m_remote_run('infra_continuous', revision=revision_getter), | 113 'factory': m_remote_run('infra_continuous', revision=revision_getter), |
| 108 'category': '1continuous', | 114 'category': '1continuous', |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 c['schedulers'].extend([ | 246 c['schedulers'].extend([ |
| 241 AnyBranchScheduler( | 247 AnyBranchScheduler( |
| 242 name='infra-scheduler', | 248 name='infra-scheduler', |
| 243 change_filter=ChangeFilter(project=['infra']), | 249 change_filter=ChangeFilter(project=['infra']), |
| 244 treeStableTimer=30, | 250 treeStableTimer=30, |
| 245 builderNames=[ | 251 builderNames=[ |
| 246 'codesearch-submodules-infra', | 252 'codesearch-submodules-infra', |
| 247 'infra-continuous-xenial-64', | 253 'infra-continuous-xenial-64', |
| 248 'infra-continuous-wily-64', | 254 'infra-continuous-wily-64', |
| 249 'infra-continuous-trusty-64', | 255 'infra-continuous-trusty-64', |
| 256 'infra-continuous-trusty-64-perf', |
| 250 'infra-continuous-trusty-32', | 257 'infra-continuous-trusty-32', |
| 251 'infra-continuous-precise-64', | 258 'infra-continuous-precise-64', |
| 252 'infra-continuous-precise-32', | 259 'infra-continuous-precise-32', |
| 253 'infra-continuous-mac-10.11-64', | 260 'infra-continuous-mac-10.11-64', |
| 254 'infra-continuous-mac-10.10-64', | 261 'infra-continuous-mac-10.10-64', |
| 255 'infra-continuous-mac-10.9-64', | 262 'infra-continuous-mac-10.9-64', |
| 256 'infra-continuous-win-32', | 263 'infra-continuous-win-32', |
| 257 'infra-continuous-win-64', | 264 'infra-continuous-win-64', |
| 258 ] | 265 ] |
| 259 ), | 266 ), |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 relayhost=config.Master.smtp, | 353 relayhost=config.Master.smtp, |
| 347 extraRecipients=['swarming-eng@googlegroups.com'], | 354 extraRecipients=['swarming-eng@googlegroups.com'], |
| 348 ), | 355 ), |
| 349 ]) | 356 ]) |
| 350 | 357 |
| 351 | 358 |
| 352 ####### PROJECT IDENTITY | 359 ####### PROJECT IDENTITY |
| 353 | 360 |
| 354 c['projectName'] = ActiveMaster.project_name | 361 c['projectName'] = ActiveMaster.project_name |
| 355 c['buildbotURL'] = ActiveMaster.buildbot_url | 362 c['buildbotURL'] = ActiveMaster.buildbot_url |
| OLD | NEW |