Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: masters/master.chromium.fyi/master.cfg

Issue 1859363002: Longer timeout for CrWin7Goma(dbg). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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']))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698