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

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

Issue 872263002: WebRTC: Move SyzyASan to FYI due to bug. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Removed trybot in waterfall config Created 5 years, 11 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.client.webrtc.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 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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_windows_scheduler', 13 SingleBranchScheduler(name='webrtc_windows_scheduler',
14 branch='trunk', 14 branch='trunk',
15 treeStableTimer=0, 15 treeStableTimer=0,
16 builderNames=[ 16 builderNames=[
17 'Win32 Debug (parallel)', 17 'Win32 Debug (parallel)',
18 'Win32 Release (parallel)', 18 'Win32 Release (parallel)',
19 'Win64 Debug (parallel)', 19 'Win64 Debug (parallel)',
20 'Win64 Release (parallel)', 20 'Win64 Release (parallel)',
21 'Win SyzyASan',
21 ]), 22 ]),
22 ]) 23 ])
23 24
24 specs = [ 25 specs = [
25 { 26 {
26 'name': 'Win32 Debug (parallel)', 27 'name': 'Win32 Debug (parallel)',
27 'slavebuilddir': 'win', 28 'slavebuilddir': 'win',
28 }, 29 },
29 { 30 {
30 'name': 'Win32 Release (parallel)', 31 'name': 'Win32 Release (parallel)',
31 'slavebuilddir': 'win', 32 'slavebuilddir': 'win',
32 }, 33 },
33 { 34 {
34 'name': 'Win64 Debug (parallel)', 35 'name': 'Win64 Debug (parallel)',
35 'slavebuilddir': 'win', 36 'slavebuilddir': 'win',
36 }, 37 },
37 { 38 {
38 'name': 'Win64 Release (parallel)', 39 'name': 'Win64 Release (parallel)',
39 'slavebuilddir': 'win', 40 'slavebuilddir': 'win',
40 }, 41 },
42 {
43 'name': 'Win SyzyASan',
44 'slavebuilddir': 'win-syzyasan',
45 },
41 ] 46 ]
42 47
43 c['builders'].extend([ 48 c['builders'].extend([
44 { 49 {
45 'name': spec['name'], 50 'name': spec['name'],
46 'factory': m_annotator.BaseFactory('webrtc/standalone'), 51 'factory': m_annotator.BaseFactory('webrtc/standalone'),
47 'notify_on_missing': True, 52 'notify_on_missing': True,
48 'category': 'win', 53 'category': 'win',
49 'slavebuilddir': spec['slavebuilddir'], 54 'slavebuilddir': spec['slavebuilddir'],
50 } for spec in specs 55 } for spec in specs
51 ]) 56 ])
OLDNEW
« no previous file with comments | « no previous file | masters/master.client.webrtc.fyi/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698