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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 'GYP_DEFINES': 'build_for_tool=drmemory component=shared_library', | 145 'GYP_DEFINES': 'build_for_tool=drmemory component=shared_library', |
146 }, | 146 }, |
147 }, | 147 }, |
148 ) | 148 ) |
149 | 149 |
150 c['builders'] = [] | 150 c['builders'] = [] |
151 | 151 |
152 # Bots that run on every commit: the pre-commit suite and the packager. | 152 # Bots that run on every commit: the pre-commit suite and the packager. |
153 for (os, os_versions) in MAINBOTS: | 153 for (os, os_versions) in MAINBOTS: |
154 c['builders'].append({'name': '%s-builder' % os, | 154 c['builders'].append({'name': '%s-builder' % os, |
155 'factory': F_DRMPACK(os == "win")}) | 155 'factory': F_DRMPACK(os)}) |
156 for version in os_versions: | 156 for version in os_versions: |
157 c['builders'].append({'name': '%s-%s-drm' % (os, version), | 157 c['builders'].append({'name': '%s-%s-drm' % (os, version), |
158 'factory': F_DRM(os == 'win')}) | 158 'factory': F_DRM(os)}) |
159 | 159 |
160 # Miscellaneous stability bots that run periodically. | 160 # Miscellaneous stability bots that run periodically. |
161 c['builders'].append({'name': 'win7-cr-builder', | 161 c['builders'].append({'name': 'win7-cr-builder', |
162 'factory': f_win_cr_builder, | 162 'factory': f_win_cr_builder, |
163 'auto_reboot': False, | 163 'auto_reboot': False, |
164 }) | 164 }) |
165 | 165 |
166 c['builders'].append({'name': 'win7-cr', | 166 c['builders'].append({'name': 'win7-cr', |
167 'factory': F_WIN_CR('win7-cr-builder'), | 167 'factory': F_WIN_CR('win7-cr-builder'), |
168 'auto_reboot': True, # Kill stale processes | 168 'auto_reboot': True, # Kill stale processes |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 | 254 |
255 ####### PROJECT IDENTITY | 255 ####### PROJECT IDENTITY |
256 | 256 |
257 # the 'projectName' string will be used to describe the project that this | 257 # the 'projectName' string will be used to describe the project that this |
258 # buildbot is working on. For example, it is used as the title of the | 258 # buildbot is working on. For example, it is used as the title of the |
259 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 259 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
260 # from buildbot HTML pages to your project's home page. | 260 # from buildbot HTML pages to your project's home page. |
261 | 261 |
262 c['projectName'] = ActiveMaster.project_name | 262 c['projectName'] = ActiveMaster.project_name |
263 c['projectURL'] = config.Master.project_url | 263 c['projectURL'] = config.Master.project_url |
OLD | NEW |