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

Side by Side Diff: masters/master.client.v8.fyi/slaves.cfg

Issue 1478953003: V8 Buildbot: Switch slaves for better throughput and usability. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years 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.client.v8.fyi/master.cfg ('k') | masters/master.client.v8/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 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright 2015 The Chromium Authors. All rights reserved. 4 # Copyright 2015 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 # This is an list of dictionaries to describe slaves. 8 # This is an list of dictionaries to describe slaves.
9 # This list is intentionally flat to be easy to filter arbitrarily. 9 # This list is intentionally flat to be easy to filter arbitrarily.
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 { 42 {
43 'master': 'V8FYI', 43 'master': 'V8FYI',
44 'builder': 'V8-Blink Linux 32', 44 'builder': 'V8-Blink Linux 32',
45 'hostname': 'vm372-m3', 45 'hostname': 'vm372-m3',
46 'os': 'linux', 46 'os': 'linux',
47 'version': 'precise', 47 'version': 'precise',
48 'bits': '64', 48 'bits': '64',
49 }, 49 },
50 { 50 {
51 'master': 'V8FYI', 51 'master': 'V8FYI',
52 'builder': 'V8-Blink Linux 64',
53 'hostname': 'vm375-m3',
54 'os': 'linux',
55 'version': 'precise',
56 'bits': '64',
57 },
58 {
59 'master': 'V8FYI',
60 'builder': 'V8-Blink Linux 64 (dbg)', 52 'builder': 'V8-Blink Linux 64 (dbg)',
61 'hostname': 'build1-m3', # Very fast builder. 53 'hostname': 'build1-m3', # Very fast builder.
62 'os': 'linux', 54 'os': 'linux',
63 'version': 'precise', 55 'version': 'precise',
64 'bits': '64', 56 'bits': '64',
65 }, 57 },
66 # Chromium bots. 58 # Chromium bots.
67 { 59 {
68 'master': 'V8FYI', 60 'master': 'V8FYI',
69 'builder': ['Android Builder', 61 'builder': ['Android Builder',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 }, 133 },
142 { 134 {
143 'master': 'V8FYI', 135 'master': 'V8FYI',
144 'builder': ['Chromium Win SyzyASAN'], 136 'builder': ['Chromium Win SyzyASAN'],
145 'hostname': 'vm317-m3', 137 'hostname': 'vm317-m3',
146 'os': 'win', 138 'os': 'win',
147 'version': 'win7', 139 'version': 'win7',
148 'bits': '64', 140 'bits': '64',
149 }, 141 },
150 ] 142 ]
143
144 for i in [106, 353, 375]:
145 slaves.append({
146 'master': 'V8FYI',
147 'builder': 'V8-Blink Linux 64',
148 'hostname': 'vm%d-m3' % i,
149 'os': 'linux',
150 'version': 'precise',
151 'bits': '64',
152 })
153
OLDNEW
« no previous file with comments | « masters/master.client.v8.fyi/master.cfg ('k') | masters/master.client.v8/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698