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

Side by Side Diff: masters/master.chromium.win/master_win_cfg.py

Issue 2196953003: Remove GYP builders from chromium mac, win waterfalls. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: remove unused suppressions Created 4 years, 4 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 | « masters/master.chromium.mac/slaves.cfg ('k') | masters/master.chromium.win/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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 Triggerable 5 from buildbot.scheduler import Triggerable
6 from buildbot.schedulers.basic import SingleBranchScheduler 6 from buildbot.schedulers.basic import SingleBranchScheduler
7 7
8 from master.factory import remote_run_factory 8 from master.factory import remote_run_factory
9 9
10 import master_site_config 10 import master_site_config
(...skipping 12 matching lines...) Expand all
23 def Update(config, active_master, c): 23 def Update(config, active_master, c):
24 c['schedulers'].extend([ 24 c['schedulers'].extend([
25 SingleBranchScheduler(name='win_src', 25 SingleBranchScheduler(name='win_src',
26 branch='master', 26 branch='master',
27 treeStableTimer=60, 27 treeStableTimer=60,
28 builderNames=[ 28 builderNames=[
29 'Win Builder', 29 'Win Builder',
30 'Win x64 Builder', 30 'Win x64 Builder',
31 'Win x64 Builder (dbg)', 31 'Win x64 Builder (dbg)',
32 'Win Builder (dbg)', 32 'Win Builder (dbg)',
33 'Win8 GYP (dbg)',
34 'WinClang64 (dbg)', 33 'WinClang64 (dbg)',
35 'Win8 GYP',
36 ]), 34 ]),
37 ]) 35 ])
38 specs = [ 36 specs = [
39 {'name': 'Win Builder'}, 37 {'name': 'Win Builder'},
40 {'name': 'Win7 (32) Tests'}, 38 {'name': 'Win7 (32) Tests'},
41 {'name': 'Win7 Tests (1)'}, 39 {'name': 'Win7 Tests (1)'},
42 {'name': 'Win x64 Builder'}, 40 {'name': 'Win x64 Builder'},
43 {'name': 'Win 7 Tests x64 (1)'}, 41 {'name': 'Win 7 Tests x64 (1)'},
44 {'name': 'Win x64 Builder (dbg)'}, 42 {'name': 'Win x64 Builder (dbg)'},
45 {'name': 'Win Builder (dbg)'}, 43 {'name': 'Win Builder (dbg)'},
46 {'name': 'Win7 Tests (dbg)(1)'}, 44 {'name': 'Win7 Tests (dbg)(1)'},
47 {'name': 'Win8 GYP'},
48 {'name': 'Win8 GYP (dbg)'},
49 {'name': 'WinClang64 (dbg)'}, 45 {'name': 'WinClang64 (dbg)'},
50 {'name': 'Win10 Tests x64'}, 46 {'name': 'Win10 Tests x64'},
51 ] 47 ]
52 48
53 c['builders'].extend([ 49 c['builders'].extend([
54 { 50 {
55 'name': spec['name'], 51 'name': spec['name'],
56 'factory': m_remote_run('chromium'), 52 'factory': m_remote_run('chromium'),
57 'notify_on_missing': True, 53 'notify_on_missing': True,
58 'category': '2windows', 54 'category': '2windows',
59 } for spec in specs 55 } for spec in specs
60 ]) 56 ])
OLDNEW
« no previous file with comments | « masters/master.chromium.mac/slaves.cfg ('k') | masters/master.chromium.win/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698