| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 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 # It has one job: define a dictionary named BuildmasterConfig. This | 8 # It has one job: define a dictionary named BuildmasterConfig. This |
| 9 # dictionary has a variety of keys to control different aspects of the | 9 # dictionary has a variety of keys to control different aspects of the |
| 10 # buildmaster. They are documented in docs/config.xhtml . | 10 # buildmaster. They are documented in docs/config.xhtml . |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 if runtime == 'precomp' and mode == 'release': continue | 446 if runtime == 'precomp' and mode == 'release': continue |
| 447 variants_vm_recipe.append({ | 447 variants_vm_recipe.append({ |
| 448 'name': ('%s-linux-%s-x64' % (runtime, mode)) + postfix, | 448 'name': ('%s-linux-%s-x64' % (runtime, mode)) + postfix, |
| 449 'category': category('1vm-%s' % runtime), | 449 'category': category('1vm-%s' % runtime), |
| 450 'factory_builder': annotator.BaseFactory(recipe='dart/dart_vm'), | 450 'factory_builder': annotator.BaseFactory(recipe='dart/dart_vm'), |
| 451 'platform': 'posix' + postfix, | 451 'platform': 'posix' + postfix, |
| 452 }) | 452 }) |
| 453 | 453 |
| 454 for mode in ['debug', 'release']: | 454 for mode in ['debug', 'release']: |
| 455 variants_vm_recipe.append({ | 455 variants_vm_recipe.append({ |
| 456 'name': ('vm-linux-%s-x64-live-reload' % mode) + postfix, | 456 'name': ('vm-linux-%s-x64-reload' % mode) + postfix, |
| 457 'category': category('1vm-hot-reload'), | 457 'category': category('1vm-reload'), |
| 458 'factory_builder': annotator.BaseFactory(recipe='dart/dart_vm'), | 458 'factory_builder': annotator.BaseFactory(recipe='dart/dart_vm'), |
| 459 'platform': 'posix' + postfix, | 459 'platform': 'posix' + postfix, |
| 460 }) | 460 }) |
| 461 variants_vm_recipe.append({ | 461 variants_vm_recipe.append({ |
| 462 'name': ('vm-linux-%s-x64-stress-reload' % mode) + postfix, | 462 'name': ('vm-linux-%s-x64-reload-rollback' % mode) + postfix, |
| 463 'category': category('1vm-hot-reload'), | 463 'category': category('1vm-reload'), |
| 464 'factory_builder': annotator.BaseFactory(recipe='dart/dart_vm'), | 464 'factory_builder': annotator.BaseFactory(recipe='dart/dart_vm'), |
| 465 'platform': 'posix' + postfix, | 465 'platform': 'posix' + postfix, |
| 466 }) | 466 }) |
| 467 | 467 |
| 468 variants_dartium = [] | 468 variants_dartium = [] |
| 469 | 469 |
| 470 ####### Don't run dartium-inc on dev/stable | 470 ####### Don't run dartium-inc on dev/stable |
| 471 if channel.name == 'be' or channel.name == 'integration': | 471 if channel.name == 'be' or channel.name == 'integration': |
| 472 variants_dartium.extend([ | 472 variants_dartium.extend([ |
| 473 { | 473 { |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 c['projectName'] = ActiveMaster.project_name | 715 c['projectName'] = ActiveMaster.project_name |
| 716 c['projectURL'] = config.Master.project_url | 716 c['projectURL'] = config.Master.project_url |
| 717 | 717 |
| 718 # the 'buildbotURL' string should point to the location where the buildbot's | 718 # the 'buildbotURL' string should point to the location where the buildbot's |
| 719 # internal web server (usually the html.Waterfall page) is visible. This | 719 # internal web server (usually the html.Waterfall page) is visible. This |
| 720 # typically uses the port number set in the Waterfall 'status' entry, but | 720 # typically uses the port number set in the Waterfall 'status' entry, but |
| 721 # with an externally-visible host name which the buildbot cannot figure out | 721 # with an externally-visible host name which the buildbot cannot figure out |
| 722 # without some help. | 722 # without some help. |
| 723 | 723 |
| 724 c['buildbotURL'] = ActiveMaster.buildbot_url | 724 c['buildbotURL'] = ActiveMaster.buildbot_url |
| OLD | NEW |