| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 for index in xrange(num_shards): | 174 for index in xrange(num_shards): |
| 175 indexed_name = '%s (%d)' % (name, index + 1) | 175 indexed_name = '%s (%d)' % (name, index + 1) |
| 176 _AddTesterShard( | 176 _AddTesterShard( |
| 177 indexed_name, factory, platform, target_bits, bb_trigger=bb_trigger) | 177 indexed_name, factory, platform, target_bits, bb_trigger=bb_trigger) |
| 178 | 178 |
| 179 | 179 |
| 180 c['builders'] = [] | 180 c['builders'] = [] |
| 181 | 181 |
| 182 | 182 |
| 183 _AddBuilder('Android Builder', 'android', target_bits=32) | 183 _AddBuilder('Android Builder', 'android', target_bits=32) |
| 184 _AddBuilder('Android Compile', 'android', target_bits=32) |
| 184 _AddBuilder('Android arm64 Builder', 'android') | 185 _AddBuilder('Android arm64 Builder', 'android') |
| 185 _AddBuilder('Win Builder', 'win', timeout=3600, target_bits=32) | 186 _AddBuilder('Win Builder', 'win', timeout=3600, target_bits=32) |
| 186 # TODO(dtu): decrease the timeout when https://crbug.com/617982 is fixed. | 187 # TODO(dtu): decrease the timeout when https://crbug.com/617982 is fixed. |
| 187 _AddBuilder('Win x64 Builder', 'win', timeout=7200) | 188 _AddBuilder('Win x64 Builder', 'win', timeout=7200) |
| 188 _AddBuilder('Mac Builder', 'mac') | 189 _AddBuilder('Mac Builder', 'mac') |
| 189 # TODO(krasin): decrease the timeout when https://crbug.com/569732 is fixed. | 190 # TODO(krasin): decrease the timeout when https://crbug.com/569732 is fixed. |
| 190 _AddBuilder('Linux Builder', 'linux', timeout=4800) | 191 _AddBuilder('Linux Builder', 'linux', timeout=4800) |
| 191 | 192 |
| 192 | 193 |
| 193 _AddTester('Android Galaxy S5 Perf', 'android', num_shards=3, target_bits=32) | 194 _AddTester('Android Galaxy S5 Perf', 'android', num_shards=3, target_bits=32) |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 | 287 |
| 287 ####### PROJECT IDENTITY | 288 ####### PROJECT IDENTITY |
| 288 | 289 |
| 289 # the 'projectName' string will be used to describe the project that this | 290 # the 'projectName' string will be used to describe the project that this |
| 290 # buildbot is working on. For example, it is used as the title of the | 291 # buildbot is working on. For example, it is used as the title of the |
| 291 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 292 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 292 # from buildbot HTML pages to your project's home page. | 293 # from buildbot HTML pages to your project's home page. |
| 293 | 294 |
| 294 c['projectName'] = ActiveMaster.project_name | 295 c['projectName'] = ActiveMaster.project_name |
| 295 c['projectURL'] = config.Master.project_url | 296 c['projectURL'] = config.Master.project_url |
| OLD | NEW |