| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 recipe='chromium', | 150 recipe='chromium', |
| 151 triggers=['linuxrel_oilpan']), | 151 triggers=['linuxrel_oilpan']), |
| 152 'category': '1builders|linux', | 152 'category': '1builders|linux', |
| 153 'auto_reboot': False, | 153 'auto_reboot': False, |
| 154 } | 154 } |
| 155 | 155 |
| 156 b_chromium_rel_win_x64_builder = {'name': 'Win x64 FYI Builder', | 156 b_chromium_rel_win_x64_builder = {'name': 'Win x64 FYI Builder', |
| 157 'builddir': 'chromium-rel-x64-fyi-builder', | 157 'builddir': 'chromium-rel-x64-fyi-builder', |
| 158 'factory': annotator_factory.AnnotatorFactory().BaseFactory( | 158 'factory': annotator_factory.AnnotatorFactory().BaseFactory( |
| 159 recipe='chromium', | 159 recipe='chromium', |
| 160 triggers=['winrel_x64']), | 160 triggers=['winrel_x64'], |
| 161 timeout=7200), |
| 161 'category': '1builders|windows', | 162 'category': '1builders|windows', |
| 162 'auto_reboot': False, | 163 'auto_reboot': False, |
| 163 } | 164 } |
| 164 | 165 |
| 165 # 2. Android | 166 # 2. Android |
| 166 | 167 |
| 167 b_chromium_rel_android_nexus5 = {'name': 'android_nexus5_oilpan_perf', | 168 b_chromium_rel_android_nexus5 = {'name': 'android_nexus5_oilpan_perf', |
| 168 'factory': recipe_factory('android/perf'), | 169 'factory': recipe_factory('android/perf'), |
| 169 'category': '2android|builder_testers', | 170 'category': '2android|builder_testers', |
| 170 } | 171 } |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 | 262 |
| 262 ####### PROJECT IDENTITY | 263 ####### PROJECT IDENTITY |
| 263 | 264 |
| 264 # the 'projectName' string will be used to describe the project that this | 265 # the 'projectName' string will be used to describe the project that this |
| 265 # buildbot is working on. For example, it is used as the title of the | 266 # buildbot is working on. For example, it is used as the title of the |
| 266 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 267 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 267 # from buildbot HTML pages to your project's home page. | 268 # from buildbot HTML pages to your project's home page. |
| 268 | 269 |
| 269 c['projectName'] = ActiveMaster.project_name | 270 c['projectName'] = ActiveMaster.project_name |
| 270 c['projectURL'] = config.Master.project_url | 271 c['projectURL'] = config.Master.project_url |
| OLD | NEW |