| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 m_annotator = annotator_factory.AnnotatorFactory(ActiveMaster) | 25 m_annotator = annotator_factory.AnnotatorFactory(ActiveMaster) |
| 26 | 26 |
| 27 # This is the dictionary that the buildmaster pays attention to. We also use | 27 # This is the dictionary that the buildmaster pays attention to. We also use |
| 28 # a shorter alias to save typing. | 28 # a shorter alias to save typing. |
| 29 c = BuildmasterConfig = {} | 29 c = BuildmasterConfig = {} |
| 30 | 30 |
| 31 # Disable merge requests because this is a tryserver | 31 # Disable merge requests because this is a tryserver |
| 32 c['mergeRequests'] = False | 32 c['mergeRequests'] = False |
| 33 | 33 |
| 34 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) | 34 config.DatabaseSetup(c) |
| 35 | 35 |
| 36 ####### CHANGESOURCES | 36 ####### CHANGESOURCES |
| 37 | 37 |
| 38 c['change_source'] = [] | 38 c['change_source'] = [] |
| 39 | 39 |
| 40 ####### BUILDERS | 40 ####### BUILDERS |
| 41 | 41 |
| 42 c['builders'] = [] | 42 c['builders'] = [] |
| 43 | 43 |
| 44 # ANGLE Android bots | 44 # ANGLE Android bots |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 c['logCompressionLimit'] = False | 180 c['logCompressionLimit'] = False |
| 181 | 181 |
| 182 # Adjust the buildCaches to be 3x the number of slaves per builder. | 182 # Adjust the buildCaches to be 3x the number of slaves per builder. |
| 183 c['autoBuildCacheRatio'] = 3 | 183 c['autoBuildCacheRatio'] = 3 |
| 184 | 184 |
| 185 ####### PROJECT IDENTITY | 185 ####### PROJECT IDENTITY |
| 186 | 186 |
| 187 # The 'projectURL' string will be used to provide a link | 187 # The 'projectURL' string will be used to provide a link |
| 188 # from buildbot HTML pages to your project's home page. | 188 # from buildbot HTML pages to your project's home page. |
| 189 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 189 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |