| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # This is the buildmaster config file for the 'chromium.perf' bot. It must | 5 # This is the buildmaster config file for the 'chromium.perf' bot. It must |
| 6 # be installed as 'master.cfg' in your buildmaster's base directory | 6 # be installed as 'master.cfg' in your buildmaster's base directory |
| 7 # (although the filename can be changed with the --basedir option to | 7 # (although the filename can be changed with the --basedir option to |
| 8 # 'mktap buildbot master'). | 8 # 'mktap buildbot master'). |
| 9 | 9 |
| 10 # It has one job: define a dictionary named BuildmasterConfig. This | 10 # It has one job: define a dictionary named BuildmasterConfig. This |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 150 |
| 151 | 151 |
| 152 c['builders'] = [] | 152 c['builders'] = [] |
| 153 | 153 |
| 154 | 154 |
| 155 _AddBuilder('Android Builder', 'android', target_bits=32) | 155 _AddBuilder('Android Builder', 'android', target_bits=32) |
| 156 _AddBuilder('Android arm64 Builder', 'android') | 156 _AddBuilder('Android arm64 Builder', 'android') |
| 157 _AddBuilder('Win Builder', 'win', timeout=3600, target_bits=32) | 157 _AddBuilder('Win Builder', 'win', timeout=3600, target_bits=32) |
| 158 _AddBuilder('Win x64 Builder', 'win', timeout=3600) | 158 _AddBuilder('Win x64 Builder', 'win', timeout=3600) |
| 159 _AddBuilder('Mac Builder', 'mac') | 159 _AddBuilder('Mac Builder', 'mac') |
| 160 _AddBuilder('Linux Builder', 'linux', merge_requests=False) | 160 _AddBuilder('Linux Builder', 'linux', timeout=3600, merge_requests=False) |
| 161 | 161 |
| 162 | 162 |
| 163 _AddTester('Android Galaxy S5 Perf', 'android', num_shards=3, target_bits=32) | 163 _AddTester('Android Galaxy S5 Perf', 'android', num_shards=3, target_bits=32) |
| 164 _AddTester('Android Nexus5 Perf', 'android', num_shards=2, target_bits=32) | 164 _AddTester('Android Nexus5 Perf', 'android', num_shards=2, target_bits=32) |
| 165 _AddTester('Android Nexus6 Perf', 'android', num_shards=2, target_bits=32) | 165 _AddTester('Android Nexus6 Perf', 'android', num_shards=2, target_bits=32) |
| 166 _AddTester('Android Nexus7v2 Perf', 'android', num_shards=2, target_bits=32) | 166 _AddTester('Android Nexus7v2 Perf', 'android', num_shards=2, target_bits=32) |
| 167 _AddTester('Android Nexus9 Perf', 'android', num_shards=2) | 167 _AddTester('Android Nexus9 Perf', 'android', num_shards=2) |
| 168 _AddTester('Android One Perf', 'android', num_shards=2, target_bits=32) | 168 _AddTester('Android One Perf', 'android', num_shards=2, target_bits=32) |
| 169 | 169 |
| 170 | 170 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 260 |
| 261 ####### PROJECT IDENTITY | 261 ####### PROJECT IDENTITY |
| 262 | 262 |
| 263 # the 'projectName' string will be used to describe the project that this | 263 # the 'projectName' string will be used to describe the project that this |
| 264 # buildbot is working on. For example, it is used as the title of the | 264 # buildbot is working on. For example, it is used as the title of the |
| 265 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 265 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 266 # from buildbot HTML pages to your project's home page. | 266 # from buildbot HTML pages to your project's home page. |
| 267 | 267 |
| 268 c['projectName'] = ActiveMaster.project_name | 268 c['projectName'] = ActiveMaster.project_name |
| 269 c['projectURL'] = config.Master.project_url | 269 c['projectURL'] = config.Master.project_url |
| OLD | NEW |