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

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

Issue 1830323005: Windows 10 64-bit try server configuration. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: fixes 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.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 annotator_factory 8 from master.factory import annotator_factory
9 9
10 m_annotator = annotator_factory.AnnotatorFactory() 10 m_annotator = annotator_factory.AnnotatorFactory()
(...skipping 20 matching lines...) Expand all
31 {'name': 'Win7 Tests (1)'}, 31 {'name': 'Win7 Tests (1)'},
32 {'name': 'Win x64 Builder'}, 32 {'name': 'Win x64 Builder'},
33 {'name': 'Win 7 Tests x64 (1)'}, 33 {'name': 'Win 7 Tests x64 (1)'},
34 {'name': 'Win x64 Builder (dbg)'}, 34 {'name': 'Win x64 Builder (dbg)'},
35 {'name': 'Win Builder (dbg)'}, 35 {'name': 'Win Builder (dbg)'},
36 {'name': 'Win7 Tests (dbg)(1)'}, 36 {'name': 'Win7 Tests (dbg)(1)'},
37 {'name': 'Win8 Aura'}, 37 {'name': 'Win8 Aura'},
38 {'name': 'Win x64 GN', 'timeout': 3600}, 38 {'name': 'Win x64 GN', 'timeout': 3600},
39 {'name': 'Win x64 GN (dbg)'}, 39 {'name': 'Win x64 GN (dbg)'},
40 {'name': 'Win8 GN (dbg)'}, 40 {'name': 'Win8 GN (dbg)'},
41 {'name': 'Win10 Tests x64'},
41 ] 42 ]
42 43
43 c['builders'].extend([ 44 c['builders'].extend([
44 { 45 {
45 'name': spec['name'], 46 'name': spec['name'],
46 'factory': m_annotator.BaseFactory( 47 'factory': m_annotator.BaseFactory(
47 spec.get('recipe', 'chromium'), 48 spec.get('recipe', 'chromium'),
48 factory_properties=spec.get('factory_properties'), 49 factory_properties=spec.get('factory_properties'),
49 timeout=spec.get('timeout', 2400)), 50 timeout=spec.get('timeout', 2400)),
50 'notify_on_missing': True, 51 'notify_on_missing': True,
51 'category': '2windows', 52 'category': '2windows',
52 } for spec in specs 53 } for spec in specs
53 ]) 54 ])
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.win/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698