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

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

Issue 2148393002: Fix find annotated test bot config problem (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix find annotated test bot config problem Created 4 years, 5 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
« no previous file with comments | « no previous file | masters/master.chromium.fyi/slaves.cfg » ('j') | 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 'Linux remote_run Builder', 149 'Linux remote_run Builder',
150 'EarlGreyiOS', 150 'EarlGreyiOS',
151 'Mojo ChromiumOS', 151 'Mojo ChromiumOS',
152 'Mojo Windows', 152 'Mojo Windows',
153 ]) 153 ])
154 154
155 # Triggerable scheduler for Android Builder 155 # Triggerable scheduler for Android Builder
156 s_chromium_android_dbg = Triggerable( 156 s_chromium_android_dbg = Triggerable(
157 name='android_dbg', 157 name='android_dbg',
158 builderNames=['Android ChromeDriver Tests (dbg)', 158 builderNames=['Android ChromeDriver Tests (dbg)',
159 'Android Find Annotated Test',
159 'Android Tests (trial)(dbg)', 160 'Android Tests (trial)(dbg)',
160 'Android Tests (x86 emulator)', 161 'Android Tests (x86 emulator)',
161 'Android Remoting Tests',]) 162 'Android Remoting Tests',])
162 163
163 s_android_find_annotated_test = Nightly( 164 s_android_find_annotated_test = Nightly(
164 name='android_find_annotated_test', 165 name='android_find_annotated_test',
165 branch='master', 166 branch='master',
166 minute=0, 167 minute=0,
167 hour=range(0,24,3), 168 hour=range(0,24,3),
168 builderNames=['Android Find Annotated Test']) 169 builderNames=['Android Find Annotated Test'])
(...skipping 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 ])) 1452 ]))
1452 1453
1453 c['status'].append(MailNotifier( 1454 c['status'].append(MailNotifier(
1454 fromaddr=ActiveMaster.from_address, # Reply-To address 1455 fromaddr=ActiveMaster.from_address, # Reply-To address
1455 mode='failing', 1456 mode='failing',
1456 relayhost=config.Master.smtp, 1457 relayhost=config.Master.smtp,
1457 subject='Build failure on %(builder)s', 1458 subject='Build failure on %(builder)s',
1458 extraRecipients=['sbc@chromium.org'], 1459 extraRecipients=['sbc@chromium.org'],
1459 sendToInterestedUsers=False, 1460 sendToInterestedUsers=False,
1460 builders=['Linux ARM'])) 1461 builders=['Linux ARM']))
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.fyi/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698