| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 'triggered': True, | 127 'triggered': True, |
| 128 }) | 128 }) |
| 129 | 129 |
| 130 # 3. Windows | 130 # 3. Windows |
| 131 | 131 |
| 132 c['builders'].append({'name': 'Win 7 Intel GPU Perf (Xeon)', | 132 c['builders'].append({'name': 'Win 7 Intel GPU Perf (Xeon)', |
| 133 'factory': recipe_factory('chromium'), | 133 'factory': recipe_factory('chromium'), |
| 134 'category': '3windows|builder_testers', | 134 'category': '3windows|builder_testers', |
| 135 }) | 135 }) |
| 136 | 136 |
| 137 c['builders'].append({'name': 'Win Power Perf (DELL)', | 137 c['builders'].append({'name': 'Win Power High-DPI Perf', |
| 138 'factory': recipe_factory('chromium'), | 138 'factory': recipe_factory('chromium'), |
| 139 'category': '3windows|builder_testers', | 139 'category': '3windows|builder_testers', |
| 140 }) | 140 }) |
| 141 | 141 |
| 142 c['builders'].append({'name': 'Win Power Perf (HP)', | 142 c['builders'].append({'name': 'Win Power Low-End 2GB Perf', |
| 143 'factory': recipe_factory('chromium'), |
| 144 'category': '3windows|builder_testers', |
| 145 }) |
| 146 |
| 147 c['builders'].append({'name': 'Win Power Low-End 4GB Perf', |
| 143 'factory': recipe_factory('chromium'), | 148 'factory': recipe_factory('chromium'), |
| 144 'category': '3windows|builder_testers', | 149 'category': '3windows|builder_testers', |
| 145 }) | 150 }) |
| 146 | 151 |
| 147 # 4. Mac | 152 # 4. Mac |
| 148 | 153 |
| 149 c['builders'].append({'name': 'Mac Retina Power Perf', | 154 c['builders'].append({'name': 'Mac Power Dual-GPU Perf', |
| 150 'factory': recipe_factory('chromium'), | 155 'factory': recipe_factory('chromium'), |
| 151 'category': '4mac|builder_testers', | 156 'category': '4mac|builder_testers', |
| 152 }) | 157 }) |
| 158 |
| 159 c['builders'].append({'name': 'Mac Power Low-End Perf', |
| 160 'factory': recipe_factory('chromium'), |
| 161 'category': '4mac|builder_testers', |
| 162 }) |
| 163 |
| 164 c['builders'].append({'name': 'Mac Test Retina Perf', |
| 165 'factory': recipe_factory('chromium'), |
| 166 'category': '4mac|builder_testers', |
| 167 }) |
| 153 | 168 |
| 154 # 5. Linux | 169 # 5. Linux |
| 155 | 170 |
| 156 # 6. Win Clang | 171 # 6. Win Clang |
| 157 | 172 |
| 158 c['builders'].append({ | 173 c['builders'].append({ |
| 159 'name': 'Win Clang Builder', | 174 'name': 'Win Clang Builder', |
| 160 'factory': annotator_factory.AnnotatorFactory(ActiveMaster).BaseFactory( | 175 'factory': annotator_factory.AnnotatorFactory(ActiveMaster).BaseFactory( |
| 161 recipe='chromium', | 176 recipe='chromium', |
| 162 triggers=['win_clang']), | 177 triggers=['win_clang']), |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 | 252 |
| 238 ####### PROJECT IDENTITY | 253 ####### PROJECT IDENTITY |
| 239 | 254 |
| 240 # the 'projectName' string will be used to describe the project that this | 255 # the 'projectName' string will be used to describe the project that this |
| 241 # buildbot is working on. For example, it is used as the title of the | 256 # buildbot is working on. For example, it is used as the title of the |
| 242 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 257 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 243 # from buildbot HTML pages to your project's home page. | 258 # from buildbot HTML pages to your project's home page. |
| 244 | 259 |
| 245 c['projectName'] = ActiveMaster.project_name | 260 c['projectName'] = ActiveMaster.project_name |
| 246 c['projectURL'] = config.Master.project_url | 261 c['projectURL'] = config.Master.project_url |
| OLD | NEW |