| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright 2013 The Chromium Authors. All rights reserved. | 4 # Copyright 2013 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.changes.filter import ChangeFilter | 8 from buildbot.changes.filter import ChangeFilter |
| 9 from buildbot.scheduler import Nightly | 9 from buildbot.scheduler import Nightly |
| 10 from buildbot.schedulers.basic import AnyBranchScheduler | 10 from buildbot.schedulers.basic import AnyBranchScheduler |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 'builddir': 'v8-s390-stable', | 291 'builddir': 'v8-s390-stable', |
| 292 'factory': m_annotator.BaseFactory('v8'), | 292 'factory': m_annotator.BaseFactory('v8'), |
| 293 'category': CATEGORY_STABLE_S390, | 293 'category': CATEGORY_STABLE_S390, |
| 294 'auto_reboot' : False, | 294 'auto_reboot' : False, |
| 295 } | 295 } |
| 296 | 296 |
| 297 b_v8_s390_beta = { | 297 b_v8_s390_beta = { |
| 298 'name': 'V8 s390 - sim - beta branch', | 298 'name': 'V8 s390 - sim - beta branch', |
| 299 'builddir': 'v8-s390-beta', | 299 'builddir': 'v8-s390-beta', |
| 300 'factory': m_annotator.BaseFactory('v8'), | 300 'factory': m_annotator.BaseFactory('v8'), |
| 301 'category': CATEGORY_STABLE_S390, | 301 'category': CATEGORY_BETA_S390, |
| 302 'auto_reboot' : False, | 302 'auto_reboot' : False, |
| 303 } | 303 } |
| 304 | 304 |
| 305 b_v8_s390x_stable = { | 305 b_v8_s390x_stable = { |
| 306 'name': 'V8 s390x - sim - stable branch', | 306 'name': 'V8 s390x - sim - stable branch', |
| 307 'builddir': 'v8-s390x-stable', | 307 'builddir': 'v8-s390x-stable', |
| 308 'factory': m_annotator.BaseFactory('v8'), | 308 'factory': m_annotator.BaseFactory('v8'), |
| 309 'category': CATEGORY_STABLE_S390, | 309 'category': CATEGORY_STABLE_S390, |
| 310 'auto_reboot' : False, | 310 'auto_reboot' : False, |
| 311 } | 311 } |
| 312 | 312 |
| 313 b_v8_s390x_beta = { | 313 b_v8_s390x_beta = { |
| 314 'name': 'V8 s390x - sim - beta branch', | 314 'name': 'V8 s390x - sim - beta branch', |
| 315 'builddir': 'v8-s390x-beta', | 315 'builddir': 'v8-s390x-beta', |
| 316 'factory': m_annotator.BaseFactory('v8'), | 316 'factory': m_annotator.BaseFactory('v8'), |
| 317 'category': CATEGORY_STABLE_S390, | 317 'category': CATEGORY_BETA_S390, |
| 318 'auto_reboot' : False, | 318 'auto_reboot' : False, |
| 319 } | 319 } |
| 320 | 320 |
| 321 b_v8_auto_tag = { | 321 b_v8_auto_tag = { |
| 322 'name': 'Auto-tag', | 322 'name': 'Auto-tag', |
| 323 'builddir': 'auto-tag', | 323 'builddir': 'auto-tag', |
| 324 'factory': m_annotator.BaseFactory('v8/auto_tag'), | 324 'factory': m_annotator.BaseFactory('v8/auto_tag'), |
| 325 'category': CATEGORY_TAG, | 325 'category': CATEGORY_TAG, |
| 326 'auto_reboot' : False, | 326 'auto_reboot' : False, |
| 327 } | 327 } |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 import mail_notifier_cfg | 386 import mail_notifier_cfg |
| 387 mail_notifier_cfg.Update(config, ActiveMaster, c) | 387 mail_notifier_cfg.Update(config, ActiveMaster, c) |
| 388 | 388 |
| 389 # Adjust the buildCaches to be 3x the number of slaves per builder. | 389 # Adjust the buildCaches to be 3x the number of slaves per builder. |
| 390 c['autoBuildCacheRatio'] = 3 | 390 c['autoBuildCacheRatio'] = 3 |
| 391 | 391 |
| 392 ####### PROJECT IDENTITY | 392 ####### PROJECT IDENTITY |
| 393 | 393 |
| 394 c['projectName'] = ActiveMaster.project_name | 394 c['projectName'] = ActiveMaster.project_name |
| 395 c['projectURL'] = config.Master.project_url | 395 c['projectURL'] = config.Master.project_url |
| OLD | NEW |