| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 _AddBuilder('Win Builder', 'win', timeout=3600, target_bits=32) | 154 _AddBuilder('Win Builder', 'win', timeout=3600, target_bits=32) |
| 155 _AddBuilder('Win x64 Builder', 'win', timeout=3600) | 155 _AddBuilder('Win x64 Builder', 'win', timeout=3600) |
| 156 _AddBuilder('Mac Builder', 'mac') | 156 _AddBuilder('Mac Builder', 'mac') |
| 157 # TODO(krasin): decrease the timeout when https://crbug.com/569732 is fixed. | 157 # TODO(krasin): decrease the timeout when https://crbug.com/569732 is fixed. |
| 158 _AddBuilder('Linux Builder', 'linux', timeout=4800, merge_requests=False) | 158 _AddBuilder('Linux Builder', 'linux', timeout=4800, merge_requests=False) |
| 159 | 159 |
| 160 | 160 |
| 161 _AddTester('Android Galaxy S5 Perf', 'android', num_shards=3, target_bits=32) | 161 _AddTester('Android Galaxy S5 Perf', 'android', num_shards=3, target_bits=32) |
| 162 _AddTester('Android Nexus5 Perf', 'android', num_shards=3, target_bits=32) | 162 _AddTester('Android Nexus5 Perf', 'android', num_shards=3, target_bits=32) |
| 163 _AddTester('Android Nexus5X Perf', 'android', num_shards=3) | 163 _AddTester('Android Nexus5X Perf', 'android', num_shards=3) |
| 164 _AddTester('Android Nexus5 WebView Perf', 'android', target_bits=32) |
| 164 _AddTester('Android Nexus6 Perf', 'android', num_shards=3, target_bits=32) | 165 _AddTester('Android Nexus6 Perf', 'android', num_shards=3, target_bits=32) |
| 165 _AddTester('Android Nexus7v2 Perf', 'android', num_shards=3, target_bits=32) | 166 _AddTester('Android Nexus7v2 Perf', 'android', num_shards=3, target_bits=32) |
| 166 _AddTester('Android Nexus9 Perf', 'android', num_shards=3) | 167 _AddTester('Android Nexus9 Perf', 'android', num_shards=3) |
| 167 _AddTester('Android One Perf', 'android', num_shards=3, target_bits=32) | 168 _AddTester('Android One Perf', 'android', num_shards=3, target_bits=32) |
| 168 | 169 |
| 169 | 170 |
| 170 _AddTester('Win Zenbook Perf', 'win', num_shards=5) | 171 _AddTester('Win Zenbook Perf', 'win', num_shards=5) |
| 171 _AddTester('Win 10 Perf', 'win', num_shards=5) | 172 _AddTester('Win 10 Perf', 'win', num_shards=5) |
| 172 _AddTester('Win 8 Perf', 'win', num_shards=5) | 173 _AddTester('Win 8 Perf', 'win', num_shards=5) |
| 173 _AddTester('Win 7 Perf', 'win', num_shards=5, target_bits=32) | 174 _AddTester('Win 7 Perf', 'win', num_shards=5, target_bits=32) |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 | 245 |
| 245 ####### PROJECT IDENTITY | 246 ####### PROJECT IDENTITY |
| 246 | 247 |
| 247 # the 'projectName' string will be used to describe the project that this | 248 # the 'projectName' string will be used to describe the project that this |
| 248 # buildbot is working on. For example, it is used as the title of the | 249 # buildbot is working on. For example, it is used as the title of the |
| 249 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 250 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 250 # from buildbot HTML pages to your project's home page. | 251 # from buildbot HTML pages to your project's home page. |
| 251 | 252 |
| 252 c['projectName'] = ActiveMaster.project_name | 253 c['projectName'] = ActiveMaster.project_name |
| 253 c['projectURL'] = config.Master.project_url | 254 c['projectURL'] = config.Master.project_url |
| OLD | NEW |