| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 'category': 'recipes-py', | 191 'category': 'recipes-py', |
| 192 }, | 192 }, |
| 193 { | 193 { |
| 194 'name': 'recipe_engine-recipes-tests', | 194 'name': 'recipe_engine-recipes-tests', |
| 195 'factory': m_remote_run( | 195 'factory': m_remote_run( |
| 196 'infra/recipe_simulation', repository=TOOLS_BUILD_URL, | 196 'infra/recipe_simulation', repository=TOOLS_BUILD_URL, |
| 197 properties={'repo_under_test': 'recipe_engine'}), | 197 properties={'repo_under_test': 'recipe_engine'}), |
| 198 'category': 'recipes-continuous', | 198 'category': 'recipes-continuous', |
| 199 }, | 199 }, |
| 200 { | 200 { |
| 201 'name': 'build-recipes-tests', | |
| 202 'factory': m_remote_run( | |
| 203 'infra/recipe_simulation', repository=TOOLS_BUILD_URL, | |
| 204 properties={'repo_under_test': 'build'}), | |
| 205 'category': 'recipes-continuous', | |
| 206 }, | |
| 207 { | |
| 208 'name': 'depot_tools-recipes-tests', | 201 'name': 'depot_tools-recipes-tests', |
| 209 'factory': m_remote_run( | 202 'factory': m_remote_run( |
| 210 'infra/recipe_simulation', repository=TOOLS_BUILD_URL, | 203 'infra/recipe_simulation', repository=TOOLS_BUILD_URL, |
| 211 properties={'repo_under_test': 'depot_tools'}), | 204 properties={'repo_under_test': 'depot_tools'}), |
| 212 'category': 'recipes-continuous', | 205 'category': 'recipes-continuous', |
| 213 }, | 206 }, |
| 214 { | 207 { |
| 215 'name': 'depot_tools zip uploader', | 208 'name': 'depot_tools zip uploader', |
| 216 'slavebuilddir': 'depot_tools_uploader', | 209 'slavebuilddir': 'depot_tools_uploader', |
| 217 'factory': m_remote_run('depot_tools_builder'), | 210 'factory': m_remote_run('depot_tools_builder'), |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 AnyBranchScheduler( | 269 AnyBranchScheduler( |
| 277 name='recipes-py-scheduler', | 270 name='recipes-py-scheduler', |
| 278 change_filter=ChangeFilter(project=['recipes-py']), | 271 change_filter=ChangeFilter(project=['recipes-py']), |
| 279 treeStableTimer=1, | 272 treeStableTimer=1, |
| 280 builderNames=[ | 273 builderNames=[ |
| 281 'recipes-py-continuous', | 274 'recipes-py-continuous', |
| 282 'recipe_engine-recipes-tests' | 275 'recipe_engine-recipes-tests' |
| 283 ] | 276 ] |
| 284 ), | 277 ), |
| 285 AnyBranchScheduler( | 278 AnyBranchScheduler( |
| 286 name='build-scheduler', | |
| 287 change_filter=ChangeFilter(project=['build']), | |
| 288 treeStableTimer=1, | |
| 289 builderNames=[ | |
| 290 'build-recipes-tests' | |
| 291 ] | |
| 292 ), | |
| 293 AnyBranchScheduler( | |
| 294 name='depot_tools-scheduler', | 279 name='depot_tools-scheduler', |
| 295 change_filter=ChangeFilter(project=['depot_tools']), | 280 change_filter=ChangeFilter(project=['depot_tools']), |
| 296 treeStableTimer=1, | 281 treeStableTimer=1, |
| 297 builderNames=[ | 282 builderNames=[ |
| 298 'depot_tools zip uploader', | 283 'depot_tools zip uploader', |
| 299 'depot_tools-recipes-tests' | 284 'depot_tools-recipes-tests' |
| 300 ] | 285 ] |
| 301 ), | 286 ), |
| 302 AnyBranchScheduler( | 287 AnyBranchScheduler( |
| 303 name='chromium-scheduler', | 288 name='chromium-scheduler', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 relayhost=config.Master.smtp, | 328 relayhost=config.Master.smtp, |
| 344 extraRecipients=['swarming-eng@googlegroups.com'], | 329 extraRecipients=['swarming-eng@googlegroups.com'], |
| 345 ), | 330 ), |
| 346 ]) | 331 ]) |
| 347 | 332 |
| 348 | 333 |
| 349 ####### PROJECT IDENTITY | 334 ####### PROJECT IDENTITY |
| 350 | 335 |
| 351 c['projectName'] = ActiveMaster.project_name | 336 c['projectName'] = ActiveMaster.project_name |
| 352 c['buildbotURL'] = ActiveMaster.buildbot_url | 337 c['buildbotURL'] = ActiveMaster.buildbot_url |
| OLD | NEW |