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

Side by Side Diff: masters/master.client.libyuv/master_linux_cfg.py

Issue 2426883002: libyuv: Remove all GYP builders. (Closed)
Patch Set: Removed unused chromium recipe module configs Created 4 years, 2 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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='libyuv_linux_scheduler', 13 SingleBranchScheduler(name='libyuv_linux_scheduler',
14 branch='master', 14 branch='master',
15 treeStableTimer=0, 15 treeStableTimer=0,
16 builderNames=[ 16 builderNames=[
17 'Linux32 Debug', 17 'Linux32 Debug',
18 'Linux32 Release', 18 'Linux32 Release',
19 'Linux64 Debug', 19 'Linux64 Debug',
20 'Linux64 Release', 20 'Linux64 Release',
21 'Linux64 Debug (GYP)',
22 'Linux64 Release (GYP)',
23 # TODO(kjellander): Add when trybot is green (crbug.com/625889). 21 # TODO(kjellander): Add when trybot is green (crbug.com/625889).
24 #'Linux GCC', 22 #'Linux GCC',
25 'Linux Asan', 23 'Linux Asan',
26 'Linux Memcheck', 24 'Linux Memcheck',
27 'Linux MSan', 25 'Linux MSan',
28 'Linux Tsan v2', 26 'Linux Tsan v2',
29 'Linux UBSan', 27 'Linux UBSan',
30 'Linux UBSan vptr', 28 'Linux UBSan vptr',
31 ]), 29 ]),
32 ]) 30 ])
33 31
34 specs = [ 32 specs = [
35 {'name': 'Linux32 Debug', 'slavebuilddir': 'linux32'}, 33 {'name': 'Linux32 Debug', 'slavebuilddir': 'linux32'},
36 {'name': 'Linux32 Release', 'slavebuilddir': 'linux32'}, 34 {'name': 'Linux32 Release', 'slavebuilddir': 'linux32'},
37 {'name': 'Linux64 Debug', 'slavebuilddir': 'linux64'}, 35 {'name': 'Linux64 Debug', 'slavebuilddir': 'linux64'},
38 {'name': 'Linux64 Release', 'slavebuilddir': 'linux64'}, 36 {'name': 'Linux64 Release', 'slavebuilddir': 'linux64'},
39 {'name': 'Linux64 Debug (GYP)', 'slavebuilddir': 'linux64_gyp'},
40 {'name': 'Linux64 Release (GYP)', 'slavebuilddir': 'linux64_gyp'},
41 # TODO(kjellander): Add when trybot is green (crbug.com/625889). 37 # TODO(kjellander): Add when trybot is green (crbug.com/625889).
42 #{'name': 'Linux GCC', 'slavebuilddir': 'linux_gcc'}, 38 #{'name': 'Linux GCC', 'slavebuilddir': 'linux_gcc'},
43 {'name': 'Linux Asan', 'slavebuilddir': 'linux_asan'}, 39 {'name': 'Linux Asan', 'slavebuilddir': 'linux_asan'},
44 {'name': 'Linux Memcheck', 'slavebuilddir': 'linux_memcheck_tsan'}, 40 {'name': 'Linux Memcheck', 'slavebuilddir': 'linux_memcheck_tsan'},
45 {'name': 'Linux MSan', 'slavebuilddir': 'linux_msan'}, 41 {'name': 'Linux MSan', 'slavebuilddir': 'linux_msan'},
46 {'name': 'Linux Tsan v2', 'slavebuilddir': 'linux_tsan2'}, 42 {'name': 'Linux Tsan v2', 'slavebuilddir': 'linux_tsan2'},
47 {'name': 'Linux UBSan', 'slavebuilddir': 'linux_ubsan'}, 43 {'name': 'Linux UBSan', 'slavebuilddir': 'linux_ubsan'},
48 {'name': 'Linux UBSan vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, 44 {'name': 'Linux UBSan vptr', 'slavebuilddir': 'linux_ubsan_vptr'},
49 ] 45 ]
50 46
51 c['builders'].extend([ 47 c['builders'].extend([
52 { 48 {
53 'name': spec['name'], 49 'name': spec['name'],
54 'factory': m_annotator.BaseFactory('libyuv/libyuv'), 50 'factory': m_annotator.BaseFactory('libyuv/libyuv'),
55 'notify_on_missing': True, 51 'notify_on_missing': True,
56 'category': 'linux', 52 'category': 'linux',
57 'slavebuilddir': spec['slavebuilddir'], 53 'slavebuilddir': spec['slavebuilddir'],
58 } for spec in specs 54 } for spec in specs
59 ]) 55 ])
OLDNEW
« no previous file with comments | « masters/master.client.libyuv/master_android_cfg.py ('k') | masters/master.client.libyuv/master_mac_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698