| OLD | NEW |
| 1 # vim: ft=python: | 1 # vim: ft=python: |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 from buildbot.changes.filter import ChangeFilter | 6 from buildbot.changes.filter import ChangeFilter |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 | 523 |
| 524 b_chromium_win7_goma_shared = { | 524 b_chromium_win7_goma_shared = { |
| 525 'name': 'CrWin7Goma(dll)', | 525 'name': 'CrWin7Goma(dll)', |
| 526 'factory': m_annotator.BaseFactory('chromium'), | 526 'factory': m_annotator.BaseFactory('chromium'), |
| 527 'category': 'goma', | 527 'category': 'goma', |
| 528 'auto_reboot': False, | 528 'auto_reboot': False, |
| 529 } | 529 } |
| 530 | 530 |
| 531 b_chromium_win7_goma_dbg = { | 531 b_chromium_win7_goma_dbg = { |
| 532 'name': 'CrWin7Goma(dbg)', | 532 'name': 'CrWin7Goma(dbg)', |
| 533 'factory': m_annotator.BaseFactory('chromium'), | 533 'factory': m_annotator.BaseFactory('chromium', timeout=3600), |
| 534 'category': 'goma', | 534 'category': 'goma', |
| 535 'auto_reboot': False, | 535 'auto_reboot': False, |
| 536 } | 536 } |
| 537 | 537 |
| 538 b_chromium_win7_goma_clobber = { | 538 b_chromium_win7_goma_clobber = { |
| 539 'name': 'CrWin7Goma(clbr)', | 539 'name': 'CrWin7Goma(clbr)', |
| 540 'factory': m_annotator.BaseFactory('chromium'), | 540 'factory': m_annotator.BaseFactory('chromium'), |
| 541 'category': 'goma', | 541 'category': 'goma', |
| 542 'auto_reboot': False, | 542 'auto_reboot': False, |
| 543 } | 543 } |
| (...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1560 builders=['Chromium Win PGO Builder'])) | 1560 builders=['Chromium Win PGO Builder'])) |
| 1561 | 1561 |
| 1562 c['status'].append(MailNotifier( | 1562 c['status'].append(MailNotifier( |
| 1563 fromaddr=ActiveMaster.from_address, # Reply-To address | 1563 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1564 mode='failing', | 1564 mode='failing', |
| 1565 relayhost=config.Master.smtp, | 1565 relayhost=config.Master.smtp, |
| 1566 subject='Build failure on %(builder)s', | 1566 subject='Build failure on %(builder)s', |
| 1567 extraRecipients=['sbc@chromium.org'], | 1567 extraRecipients=['sbc@chromium.org'], |
| 1568 sendToInterestedUsers=False, | 1568 sendToInterestedUsers=False, |
| 1569 builders=['Linux ARM'])) | 1569 builders=['Linux ARM'])) |
| OLD | NEW |