| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 _AddTester('Win 7 x64 Perf', 'win', num_shards=5) | 210 _AddTester('Win 7 x64 Perf', 'win', num_shards=5) |
| 211 _AddTester('Win 7 ATI GPU Perf', 'win', num_shards=5) | 211 _AddTester('Win 7 ATI GPU Perf', 'win', num_shards=5) |
| 212 _AddTester('Win 7 Intel GPU Perf', 'win', num_shards=5) | 212 _AddTester('Win 7 Intel GPU Perf', 'win', num_shards=5) |
| 213 _AddTester('Win 7 Nvidia GPU Perf', 'win', num_shards=5) | 213 _AddTester('Win 7 Nvidia GPU Perf', 'win', num_shards=5) |
| 214 | 214 |
| 215 | 215 |
| 216 _AddTester('Mac 10.11 Perf', 'mac', num_shards=5) | 216 _AddTester('Mac 10.11 Perf', 'mac', num_shards=5) |
| 217 _AddTester('Mac 10.10 Perf', 'mac', num_shards=5) | 217 _AddTester('Mac 10.10 Perf', 'mac', num_shards=5) |
| 218 _AddTester('Mac Retina Perf', 'mac', num_shards=5) | 218 _AddTester('Mac Retina Perf', 'mac', num_shards=5) |
| 219 _AddTester('Mac HDD Perf', 'mac', num_shards=5) | 219 _AddTester('Mac HDD Perf', 'mac', num_shards=5) |
| 220 _AddTester('Mac Pro 10.11 Perf', 'mac') |
| 221 _AddTester('Mac Air 10.11 Perf', 'mac') |
| 220 | 222 |
| 221 | 223 |
| 222 _AddTester('Linux Perf', 'linux', num_shards=5) | 224 _AddTester('Linux Perf', 'linux', num_shards=5) |
| 223 | 225 |
| 224 # End Builders. | 226 # End Builders. |
| 225 # ------------------------------------------------------------------------------ | 227 # ------------------------------------------------------------------------------ |
| 226 | 228 |
| 227 | 229 |
| 228 # ------------------------------------------------------------------------------ | 230 # ------------------------------------------------------------------------------ |
| 229 # Schedulers. | 231 # Schedulers. |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 | 286 |
| 285 ####### PROJECT IDENTITY | 287 ####### PROJECT IDENTITY |
| 286 | 288 |
| 287 # the 'projectName' string will be used to describe the project that this | 289 # the 'projectName' string will be used to describe the project that this |
| 288 # buildbot is working on. For example, it is used as the title of the | 290 # buildbot is working on. For example, it is used as the title of the |
| 289 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 291 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 290 # from buildbot HTML pages to your project's home page. | 292 # from buildbot HTML pages to your project's home page. |
| 291 | 293 |
| 292 c['projectName'] = ActiveMaster.project_name | 294 c['projectName'] = ActiveMaster.project_name |
| 293 c['projectURL'] = config.Master.project_url | 295 c['projectURL'] = config.Master.project_url |
| OLD | NEW |