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

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

Issue 1625713002: Infra side changes to add a 32 bit Windows 7 bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: add suppression for new bot Created 4 years, 11 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 11 matching lines...) Expand all
22 'Win x64 GN', 22 'Win x64 GN',
23 'Win x64 GN (dbg)', 23 'Win x64 GN (dbg)',
24 'Win8 GN (dbg)', 24 'Win8 GN (dbg)',
25 'Win8 Aura', 25 'Win8 Aura',
26 ]), 26 ]),
27 ]) 27 ])
28 specs = [ 28 specs = [
29 {'name': 'Win Builder'}, 29 {'name': 'Win Builder'},
30 {'name': 'XP Tests (1)'}, 30 {'name': 'XP Tests (1)'},
31 {'name': 'Vista Tests (1)'}, 31 {'name': 'Vista Tests (1)'},
32 {'name': 'Win7 (32) Tests'},
32 {'name': 'Win7 Tests (1)'}, 33 {'name': 'Win7 Tests (1)'},
33 {'name': 'Win x64 Builder'}, 34 {'name': 'Win x64 Builder'},
34 {'name': 'Win 7 Tests x64 (1)'}, 35 {'name': 'Win 7 Tests x64 (1)'},
35 {'name': 'Win x64 Builder (dbg)'}, 36 {'name': 'Win x64 Builder (dbg)'},
36 {'name': 'Win Builder (dbg)'}, 37 {'name': 'Win Builder (dbg)'},
37 {'name': 'Win7 Tests (dbg)(1)'}, 38 {'name': 'Win7 Tests (dbg)(1)'},
38 {'name': 'Win8 Aura'}, 39 {'name': 'Win8 Aura'},
39 {'name': 'Win x64 GN', 'timeout': 3600}, 40 {'name': 'Win x64 GN', 'timeout': 3600},
40 {'name': 'Win x64 GN (dbg)'}, 41 {'name': 'Win x64 GN (dbg)'},
41 {'name': 'Win8 GN (dbg)'}, 42 {'name': 'Win8 GN (dbg)'},
42 ] 43 ]
43 44
44 c['builders'].extend([ 45 c['builders'].extend([
45 { 46 {
46 'name': spec['name'], 47 'name': spec['name'],
47 'factory': m_annotator.BaseFactory( 48 'factory': m_annotator.BaseFactory(
48 spec.get('recipe', 'chromium'), 49 spec.get('recipe', 'chromium'),
49 factory_properties=spec.get('factory_properties'), 50 factory_properties=spec.get('factory_properties'),
50 timeout=spec.get('timeout', 2400)), 51 timeout=spec.get('timeout', 2400)),
51 'notify_on_missing': True, 52 'notify_on_missing': True,
52 'category': '2windows', 53 'category': '2windows',
53 } for spec in specs 54 } for spec in specs
54 ]) 55 ])
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