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

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

Issue 1412353002: WebRTC: Add Linux GCC bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rename to gcc and add compiler group Created 5 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
« 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()
(...skipping 16 matching lines...) Expand all
27 hour=[19,3,11], 27 hour=[19,3,11],
28 ), 28 ),
29 ]) 29 ])
30 30
31 specs = [ 31 specs = [
32 { 32 {
33 'name': 'Linux32 ARM', 33 'name': 'Linux32 ARM',
34 'slavebuilddir': 'linux_arm', 34 'slavebuilddir': 'linux_arm',
35 }, 35 },
36 { 36 {
37 'name': 'Linux64 GCC',
38 'slavebuilddir': 'linux_gcc',
39 },
40 {
37 'name': 'Linux Tsan v2 (parallel)', 41 'name': 'Linux Tsan v2 (parallel)',
38 'slavebuilddir': 'linux_tsan2', 42 'slavebuilddir': 'linux_tsan2',
39 }, 43 },
40 { 44 {
41 'name': 'Linux64 Release (swarming)', 45 'name': 'Linux64 Release (swarming)',
42 'slavebuilddir': 'linux_swarming', 46 'slavebuilddir': 'linux_swarming',
43 }, 47 },
44 { 48 {
45 'name': 'Auto-roll - WebRTC DEPS', 49 'name': 'Auto-roll - WebRTC DEPS',
46 'recipe': 'webrtc/auto_roll_webrtc_deps', 50 'recipe': 'webrtc/auto_roll_webrtc_deps',
47 'slavebuilddir': 'linux_autoroll', 51 'slavebuilddir': 'linux_autoroll',
48 }, 52 },
49 ] 53 ]
50 54
51 c['builders'].extend([ 55 c['builders'].extend([
52 { 56 {
53 'name': spec['name'], 57 'name': spec['name'],
54 'factory': m_annotator.BaseFactory(spec.get('recipe', 58 'factory': m_annotator.BaseFactory(spec.get('recipe',
55 'webrtc/standalone')), 59 'webrtc/standalone')),
56 'notify_on_missing': True, 60 'notify_on_missing': True,
57 'category': 'linux', 61 'category': 'linux',
58 'slavebuilddir': spec['slavebuilddir'], 62 'slavebuilddir': spec['slavebuilddir'],
59 'auto_reboot': False, 63 'auto_reboot': False,
60 } for spec in specs 64 } for spec in specs
61 ]) 65 ])
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