Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2014 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 # This is the buildmaster config file for the 'chromium' bot. It must | 8 # This is the buildmaster config file for the 'chromium' bot. It must |
| 9 # be installed as 'master.cfg' in your buildmaster's base directory | 9 # be installed as 'master.cfg' in your buildmaster's base directory |
| 10 # (although the filename can be changed with the --basedir option to | 10 # (although the filename can be changed with the --basedir option to |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 137 'factory': annotator_factory.AnnotatorFactory(ActiveMaster).BaseFactory( | 137 'factory': annotator_factory.AnnotatorFactory(ActiveMaster).BaseFactory( |
| 138 recipe='chromium', | 138 recipe='chromium', |
| 139 triggers=['winrel_x64'], | 139 triggers=['winrel_x64'], |
| 140 timeout=7200), | 140 timeout=7200), |
| 141 'category': '1builders|windows', | 141 'category': '1builders|windows', |
| 142 'auto_reboot': False, | 142 'auto_reboot': False, |
| 143 }) | 143 }) |
| 144 | 144 |
| 145 # 2. Android | 145 # 2. Android |
| 146 | 146 |
| 147 c['builders'].append({ | |
| 148 'name': 'Android Galaxy S5 Perf (1)', | |
|
fmeawad
2016/05/27 20:54:09
I do not think it should have "(1)", it should be
| |
| 149 'factory': recipe_factory('android/perf'), | |
| 150 'category': '2android|builder_testers', | |
| 151 'triggered': True, | |
| 152 }) | |
|
fmeawad
2016/05/27 20:04:43
There is only a windows builder, no mac or android
| |
| 153 | |
| 147 # 3. Windows | 154 # 3. Windows |
| 148 | 155 |
| 149 c['builders'].append({'name': 'Win 7 Intel GPU Perf (Xeon)', | 156 c['builders'].append({'name': 'Win 7 Intel GPU Perf (Xeon)', |
| 150 'factory': recipe_factory('chromium'), | 157 'factory': recipe_factory('chromium'), |
| 151 'category': '3windows|builder_testers', | 158 'category': '3windows|builder_testers', |
| 152 }) | 159 }) |
| 153 | 160 |
| 154 # 4. Mac | 161 # 4. Mac |
| 155 | 162 |
| 163 c['builders'].append({'name': 'Mac Retina Power Perf', | |
| 164 'factory': recipe_factory('chromium'), | |
| 165 'category': '4mac|builder_testers', | |
| 166 }) | |
|
fmeawad
2016/05/27 20:04:43
ditto
| |
| 167 | |
| 156 # 5. Linux | 168 # 5. Linux |
| 157 | 169 |
| 158 # 6. Win Clang | 170 # 6. Win Clang |
| 159 | 171 |
| 160 c['builders'].append({ | 172 c['builders'].append({ |
| 161 'name': 'Win Clang Builder', | 173 'name': 'Win Clang Builder', |
| 162 'factory': annotator_factory.AnnotatorFactory(ActiveMaster).BaseFactory( | 174 'factory': annotator_factory.AnnotatorFactory(ActiveMaster).BaseFactory( |
| 163 recipe='chromium', | 175 recipe='chromium', |
| 164 triggers=['win_clang']), | 176 triggers=['win_clang']), |
| 165 'category': '6win clang|builders', | 177 'category': '6win clang|builders', |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 247 | 259 |
| 248 ####### PROJECT IDENTITY | 260 ####### PROJECT IDENTITY |
| 249 | 261 |
| 250 # the 'projectName' string will be used to describe the project that this | 262 # the 'projectName' string will be used to describe the project that this |
| 251 # buildbot is working on. For example, it is used as the title of the | 263 # buildbot is working on. For example, it is used as the title of the |
| 252 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 264 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 253 # from buildbot HTML pages to your project's home page. | 265 # from buildbot HTML pages to your project's home page. |
| 254 | 266 |
| 255 c['projectName'] = ActiveMaster.project_name | 267 c['projectName'] = ActiveMaster.project_name |
| 256 c['projectURL'] = config.Master.project_url | 268 c['projectURL'] = config.Master.project_url |
| OLD | NEW |