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

Side by Side Diff: masters/master.tryserver.webrtc/slaves.cfg

Issue 883633002: WebRTC: Reshuffle Mac trybot slaves. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 # Pool the builders over all the slave machines, as a WebRTC checkout is only 5 # Pool the builders over all the slave machines, as a WebRTC checkout is only
6 # about 1.5 GB including source code and compiled artifacts. 6 # about 1.5 GB including source code and compiled artifacts.
7 slaves = [ 7 slaves = [
8 # Linux. 8 # Linux.
9 { 9 {
10 'master': 'WebRTCTryServer', 10 'master': 'WebRTCTryServer',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 # Mac. 92 # Mac.
93 { 93 {
94 'master': 'WebRTCTryServer', 94 'master': 'WebRTCTryServer',
95 'os': 'mac', 95 'os': 'mac',
96 'version': '10.8', 96 'version': '10.8',
97 'bits': '64', 97 'bits': '64',
98 'builder': [ 98 'builder': [
99 'mac', 99 'mac',
100 'mac_rel', 100 'mac_rel',
101 'mac_x64_rel', 101 'mac_x64_rel',
102 'mac_x64_gn',
103 'mac_x64_gn_rel',
104 'mac_asan',
105 'ios', 102 'ios',
106 'ios_rel', 103 'ios_rel',
107 'ios_arm64', 104 'ios_arm64',
108 'ios_arm64_rel', 105 'ios_arm64_rel',
109 ], 106 ],
110 'hostname': 'vm%d-m4' % i, 107 'hostname': 'vm%d-m4' % i,
111 } for i in range(738, 741) + range(818, 820) 108 } for i in range(738, 741) + [818]
112 ] + [ 109 ] + [
110 {
111 'master': 'WebRTCTryServer',
112 'os': 'mac',
113 'version': '10.8',
114 'bits': '64',
115 'builder': [
116 'mac_asan',
117 'mac_x64_gn',
118 'mac_x64_gn_rel',
119 ],
120 'hostname': 'vm819-m4',
121 },
113 # Mac bare-metal machines with audio devices and headsets. 122 # Mac bare-metal machines with audio devices and headsets.
114 { 123 {
115 'master': 'WebRTCTryServer', 124 'master': 'WebRTCTryServer',
116 'os': 'mac', 125 'os': 'mac',
117 'version': '10.8', 126 'version': '10.8',
118 'bits': '64', 127 'bits': '64',
119 'builder': [ 128 'builder': [
120 'mac_baremetal', 129 'mac_baremetal',
121 ], 130 ],
122 'hostname': 'build24-a4', 131 'hostname': 'build24-a4',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 'master': 'WebRTCTryServer', 163 'master': 'WebRTCTryServer',
155 'os': 'win', 164 'os': 'win',
156 'version': 'win7', 165 'version': 'win7',
157 'bits': '64', 166 'bits': '64',
158 'builder': [ 167 'builder': [
159 'win_baremetal', 168 'win_baremetal',
160 ], 169 ],
161 'hostname': 'build23-a4', 170 'hostname': 'build23-a4',
162 } 171 }
163 ] 172 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698