| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 indexed_name = '%s (%d)' % (name, index + 1) | 151 indexed_name = '%s (%d)' % (name, index + 1) |
| 152 _AddTesterShard(indexed_name, recipe, platform, target_bits) | 152 _AddTesterShard(indexed_name, recipe, platform, target_bits) |
| 153 | 153 |
| 154 | 154 |
| 155 c['builders'] = [] | 155 c['builders'] = [] |
| 156 | 156 |
| 157 | 157 |
| 158 _AddBuilder('Android Builder', 'android', target_bits=32, merge_requests=False) | 158 _AddBuilder('Android Builder', 'android', target_bits=32, merge_requests=False) |
| 159 _AddBuilder('Android arm64 Builder', 'android', merge_requests=False) | 159 _AddBuilder('Android arm64 Builder', 'android', merge_requests=False) |
| 160 _AddBuilder('Win Builder', 'win', timeout=3600, target_bits=32) | 160 _AddBuilder('Win Builder', 'win', timeout=3600, target_bits=32) |
| 161 _AddBuilder('Win x64 Builder', 'win', timeout=3600) | 161 # TODO(dtu): decrease the timeout when https://crbug.com/617982 is fixed. |
| 162 _AddBuilder('Win x64 Builder', 'win', timeout=7200) |
| 162 _AddBuilder('Mac Builder', 'mac', merge_requests=False) | 163 _AddBuilder('Mac Builder', 'mac', merge_requests=False) |
| 163 # TODO(krasin): decrease the timeout when https://crbug.com/569732 is fixed. | 164 # TODO(krasin): decrease the timeout when https://crbug.com/569732 is fixed. |
| 164 _AddBuilder('Linux Builder', 'linux', timeout=4800, merge_requests=False) | 165 _AddBuilder('Linux Builder', 'linux', timeout=4800, merge_requests=False) |
| 165 | 166 |
| 166 | 167 |
| 167 _AddTester('Android Galaxy S5 Perf', 'android', num_shards=3, target_bits=32) | 168 _AddTester('Android Galaxy S5 Perf', 'android', num_shards=3, target_bits=32) |
| 168 _AddTester('Android Nexus5 Perf', 'android', num_shards=3, target_bits=32) | 169 _AddTester('Android Nexus5 Perf', 'android', num_shards=3, target_bits=32) |
| 169 _AddTester('Android Nexus5X Perf', 'android', num_shards=3) | 170 _AddTester('Android Nexus5X Perf', 'android', num_shards=3) |
| 170 _AddTester('Android Nexus6 Perf', 'android', num_shards=3, target_bits=32) | 171 _AddTester('Android Nexus6 Perf', 'android', num_shards=3, target_bits=32) |
| 171 _AddTester('Android Nexus7v2 Perf', 'android', num_shards=3, target_bits=32) | 172 _AddTester('Android Nexus7v2 Perf', 'android', num_shards=3, target_bits=32) |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 | 251 |
| 251 ####### PROJECT IDENTITY | 252 ####### PROJECT IDENTITY |
| 252 | 253 |
| 253 # the 'projectName' string will be used to describe the project that this | 254 # the 'projectName' string will be used to describe the project that this |
| 254 # buildbot is working on. For example, it is used as the title of the | 255 # buildbot is working on. For example, it is used as the title of the |
| 255 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 256 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 256 # from buildbot HTML pages to your project's home page. | 257 # from buildbot HTML pages to your project's home page. |
| 257 | 258 |
| 258 c['projectName'] = ActiveMaster.project_name | 259 c['projectName'] = ActiveMaster.project_name |
| 259 c['projectURL'] = config.Master.project_url | 260 c['projectURL'] = config.Master.project_url |
| OLD | NEW |