OLD | NEW |
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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 'master': 'WebRTCTryServer', | 127 'master': 'WebRTCTryServer', |
128 'os': 'win', | 128 'os': 'win', |
129 'version': 'win7', | 129 'version': 'win7', |
130 'bits': '64', | 130 'bits': '64', |
131 'builder': [ | 131 'builder': [ |
132 'win', | 132 'win', |
133 'win_rel', | 133 'win_rel', |
134 'win_x64_rel', | 134 'win_x64_rel', |
135 'win_x64_gn', | 135 'win_x64_gn', |
136 'win_x64_gn_rel', | 136 'win_x64_gn_rel', |
137 'win_asan', | |
138 ], | 137 ], |
139 'hostname': 'vm%d-m4' % i, | 138 'hostname': 'vm%d-m4' % i, |
140 } for i in range(207, 209) + [212] | 139 } for i in range(207, 209) + [212] |
141 ] + [ | 140 ] + [ |
142 { | 141 { |
143 'master': 'WebRTCTryServer', | 142 'master': 'WebRTCTryServer', |
144 'os': 'win', | 143 'os': 'win', |
145 'version': 'win7', | 144 'version': 'win7', |
146 'bits': '64', | 145 'bits': '64', |
147 'builder': [ | 146 'builder': [ |
148 'win_drmemory_light', | 147 'win_drmemory_light', |
149 'win_drmemory_full', | 148 'win_drmemory_full', |
150 ], | 149 ], |
151 'hostname': 'vm234-m4', | 150 'hostname': 'vm234-m4', |
152 }, | 151 }, |
153 # Windows bare-metal machines with audio devices and headsets. | 152 # Windows bare-metal machines with audio devices and headsets. |
154 { | 153 { |
155 'master': 'WebRTCTryServer', | 154 'master': 'WebRTCTryServer', |
156 'os': 'win', | 155 'os': 'win', |
157 'version': 'win7', | 156 'version': 'win7', |
158 'bits': '64', | 157 'bits': '64', |
159 'builder': [ | 158 'builder': [ |
160 'win_baremetal', | 159 'win_baremetal', |
161 ], | 160 ], |
162 'hostname': 'build23-a4', | 161 'hostname': 'build23-a4', |
163 } | 162 } |
164 ] | 163 ] |
OLD | NEW |