| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Scheduler | 9 from buildbot.scheduler import Scheduler |
| 10 | 10 |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 'slavebuilddir': 'win64', | 462 'slavebuilddir': 'win64', |
| 463 'factory': m_annotator.BaseFactory('v8'), | 463 'factory': m_annotator.BaseFactory('v8'), |
| 464 'category': CATEGORY_WIN, | 464 'category': CATEGORY_WIN, |
| 465 'auto_reboot' : False, | 465 'auto_reboot' : False, |
| 466 } | 466 } |
| 467 | 467 |
| 468 b_v8_win64_clang = { | 468 b_v8_win64_clang = { |
| 469 'name': 'V8 Win64 - clang', | 469 'name': 'V8 Win64 - clang', |
| 470 'slavebuilddir': 'win64-clang', | 470 'slavebuilddir': 'win64-clang', |
| 471 'factory': m_annotator.BaseFactory('v8'), | 471 'factory': m_annotator.BaseFactory('v8'), |
| 472 'category': CATEGORY_FYI, | 472 'category': CATEGORY_WIN, |
| 473 'auto_reboot' : False, | 473 'auto_reboot' : False, |
| 474 } | 474 } |
| 475 | 475 |
| 476 b_v8_linux_isolates = { | 476 b_v8_linux_isolates = { |
| 477 'name': 'V8 Linux - isolates', | 477 'name': 'V8 Linux - isolates', |
| 478 'slavebuilddir': 'linux', | 478 'slavebuilddir': 'linux', |
| 479 'factory': m_annotator.BaseFactory('v8'), | 479 'factory': m_annotator.BaseFactory('v8'), |
| 480 'category': CATEGORY_LINUX, | 480 'category': CATEGORY_LINUX, |
| 481 'auto_reboot' : False, | 481 'auto_reboot' : False, |
| 482 } | 482 } |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 # too low. Must keep at least a few days worth of builds. | 780 # too low. Must keep at least a few days worth of builds. |
| 781 c['buildHorizon'] = 1000 | 781 c['buildHorizon'] = 1000 |
| 782 c['logHorizon'] = 500 | 782 c['logHorizon'] = 500 |
| 783 # Must be at least 2x the number of slaves. | 783 # Must be at least 2x the number of slaves. |
| 784 c['eventHorizon'] = 200 | 784 c['eventHorizon'] = 200 |
| 785 | 785 |
| 786 ####### PROJECT IDENTITY | 786 ####### PROJECT IDENTITY |
| 787 | 787 |
| 788 c['projectName'] = ActiveMaster.project_name | 788 c['projectName'] = ActiveMaster.project_name |
| 789 c['projectURL'] = config.Master.project_url | 789 c['projectURL'] = config.Master.project_url |
| OLD | NEW |