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

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

Issue 1852223002: Revert of WebRTC: Move libfuzzer bot to client.webrtc.fyi (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebased 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
« 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 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.scheduler import Nightly 5 from buildbot.scheduler import Nightly
6 from buildbot.schedulers.basic import SingleBranchScheduler 6 from buildbot.schedulers.basic import SingleBranchScheduler
7 7
8 from master.factory import annotator_factory 8 from master.factory import annotator_factory
9 9
10 m_annotator = annotator_factory.AnnotatorFactory() 10 m_annotator = annotator_factory.AnnotatorFactory()
11 11
12 def Update(c): 12 def Update(c):
13 c['schedulers'].extend([ 13 c['schedulers'].extend([
14 SingleBranchScheduler(name='webrtc_linux_scheduler', 14 SingleBranchScheduler(name='webrtc_linux_scheduler',
15 branch='master', 15 branch='master',
16 treeStableTimer=0, 16 treeStableTimer=0,
17 builderNames=[ 17 builderNames=[
18 'Linux32 ARM', 18 'Linux32 ARM',
19 'Linux64 GCC', 19 'Linux64 GCC',
20 'Linux64 Release (swarming)', 20 'Linux64 Release (swarming)',
21 'Linux64 Release (Libfuzzer)',
22 ]), 21 ]),
23 # Run WebRTC DEPS roller at CET hours: 4am, 12pm and 8pm. 22 # Run WebRTC DEPS roller at CET hours: 4am, 12pm and 8pm.
24 Nightly( 23 Nightly(
25 name='webrtc_deps', 24 name='webrtc_deps',
26 branch=None, 25 branch=None,
27 builderNames=['Auto-roll - WebRTC DEPS'], 26 builderNames=['Auto-roll - WebRTC DEPS'],
28 hour=[19,3,11], # Pacific timezone. 27 hour=[19,3,11], # Pacific timezone.
29 ), 28 ),
30 ]) 29 ])
31 30
32 specs = [ 31 specs = [
33 { 32 {
34 'name': 'Linux32 ARM', 33 'name': 'Linux32 ARM',
35 'slavebuilddir': 'linux_arm', 34 'slavebuilddir': 'linux_arm',
36 }, 35 },
37 { 36 {
38 'name': 'Linux64 GCC', 37 'name': 'Linux64 GCC',
39 'slavebuilddir': 'linux_gcc', 38 'slavebuilddir': 'linux_gcc',
40 }, 39 },
41 { 40 {
42 'name': 'Linux64 Release (swarming)', 41 'name': 'Linux64 Release (swarming)',
43 'slavebuilddir': 'linux_swarming', 42 'slavebuilddir': 'linux_swarming',
44 }, 43 },
45 { 44 {
46 'name': 'Linux64 Release (Libfuzzer)',
47 'recipe': 'webrtc/libfuzzer',
48 'slavebuilddir': 'linux64_libfuzzer',
49 },
50 {
51 'name': 'Auto-roll - WebRTC DEPS', 45 'name': 'Auto-roll - WebRTC DEPS',
52 'recipe': 'webrtc/auto_roll_webrtc_deps', 46 'recipe': 'webrtc/auto_roll_webrtc_deps',
53 'slavebuilddir': 'linux_autoroll', 47 'slavebuilddir': 'linux_autoroll',
54 }, 48 },
55 ] 49 ]
56 50
57 c['builders'].extend([ 51 c['builders'].extend([
58 { 52 {
59 'name': spec['name'], 53 'name': spec['name'],
60 'factory': m_annotator.BaseFactory(spec.get('recipe', 54 'factory': m_annotator.BaseFactory(spec.get('recipe',
61 'webrtc/standalone')), 55 'webrtc/standalone')),
62 'notify_on_missing': True, 56 'notify_on_missing': True,
63 'category': 'linux', 57 'category': 'linux',
64 'slavebuilddir': spec['slavebuilddir'], 58 'slavebuilddir': spec['slavebuilddir'],
65 'auto_reboot': False, 59 'auto_reboot': False,
66 } for spec in specs 60 } for spec in specs
67 ]) 61 ])
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