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

Side by Side Diff: masters/master.client.webrtc.fyi/master_linux_cfg.py

Issue 573693002: WebRTC: Remove Valgrind based FYI bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 3 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from buildbot.schedulers.basic import SingleBranchScheduler 5 from buildbot.schedulers.basic import SingleBranchScheduler
6 6
7 from master.factory import annotator_factory 7 from master.factory import annotator_factory
8 8
9 m_annotator = annotator_factory.AnnotatorFactory() 9 m_annotator = annotator_factory.AnnotatorFactory()
10 10
11 def Update(c): 11 def Update(c):
12 c['schedulers'].extend([ 12 c['schedulers'].extend([
13 SingleBranchScheduler(name='webrtc_linux_scheduler', 13 SingleBranchScheduler(name='webrtc_linux_scheduler',
14 branch='trunk', 14 branch='trunk',
15 treeStableTimer=0, 15 treeStableTimer=0,
16 builderNames=[ 16 builderNames=['Linux LSan (and ASan)']),
17 'Linux TsanRV',
18 'Linux LSan (and ASan)',
19 ]),
20 ]) 17 ])
21 18
22 specs = [ 19 specs = [
23 {'name': 'Linux TsanRV', 'slavebuilddir': 'linux_tsanrv'},
24 {'name': 'Linux LSan (and ASan)', 'slavebuilddir': 'linux_lsan_asan'}, 20 {'name': 'Linux LSan (and ASan)', 'slavebuilddir': 'linux_lsan_asan'},
25 ] 21 ]
26 22
27 c['builders'].extend([ 23 c['builders'].extend([
28 { 24 {
29 'name': spec['name'], 25 'name': spec['name'],
30 'factory': m_annotator.BaseFactory('webrtc/standalone'), 26 'factory': m_annotator.BaseFactory('webrtc/standalone'),
31 'notify_on_missing': True, 27 'notify_on_missing': True,
32 'category': 'linux', 28 'category': 'linux',
33 'slavebuilddir': spec['slavebuilddir'], 29 'slavebuilddir': spec['slavebuilddir'],
34 } for spec in specs 30 } for spec in specs
35 ]) 31 ])
OLDNEW
« no previous file with comments | « masters/master.client.webrtc.fyi/master.cfg ('k') | masters/master.client.webrtc.fyi/master_mac_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698