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', |
11 'os': 'linux', | 11 'os': 'linux', |
12 'version': 'precise', | 12 'version': 'precise', |
13 'bits': '64', | 13 'bits': '64', |
14 'builder': [ | 14 'builder': [ |
15 'android', | |
16 'android_rel', | |
17 'android_clang', | 15 'android_clang', |
18 'android_arm64', | 16 'android_arm64', |
19 'android_gn', | 17 'android_gn', |
20 'android_gn_rel', | 18 'android_gn_rel', |
21 'linux', | 19 'linux', |
22 'linux_rel', | 20 'linux_rel', |
23 'linux_gn', | 21 'linux_gn', |
24 'linux_gn_rel', | 22 'linux_gn_rel', |
25 'linux_asan', | 23 'linux_asan', |
26 'linux_tsan2', | 24 'linux_tsan2', |
(...skipping 11 matching lines...) Expand all Loading... |
38 ], | 36 ], |
39 'hostname': 'slave725-c4', | 37 'hostname': 'slave725-c4', |
40 }, | 38 }, |
41 # Linux bare-metal machines with Android devices. | 39 # Linux bare-metal machines with Android devices. |
42 { | 40 { |
43 'master': 'WebRTCTryServer', | 41 'master': 'WebRTCTryServer', |
44 'os': 'linux', | 42 'os': 'linux', |
45 'version': 'precise', | 43 'version': 'precise', |
46 'bits': '64', | 44 'bits': '64', |
47 'builder': [ | 45 'builder': [ |
48 'android_apk', | 46 'android', |
49 ], | 47 ], |
50 'hostname': 'build77-a4', | 48 'hostname': 'build77-a4', |
51 }, | 49 }, |
52 { | 50 { |
53 'master': 'WebRTCTryServer', | 51 'master': 'WebRTCTryServer', |
54 'os': 'linux', | 52 'os': 'linux', |
55 'version': 'precise', | 53 'version': 'precise', |
56 'bits': '64', | 54 'bits': '64', |
57 'builder': [ | 55 'builder': [ |
58 'android_apk_rel', | 56 'android_rel', |
59 ], | 57 ], |
60 'hostname': 'build78-a4', | 58 'hostname': 'build78-a4', |
61 }, | 59 }, |
62 # Linux bare-metal machines with audio devices and headsets. | 60 # Linux bare-metal machines with audio devices and headsets. |
63 { | 61 { |
64 'master': 'WebRTCTryServer', | 62 'master': 'WebRTCTryServer', |
65 'os': 'linux', | 63 'os': 'linux', |
66 'version': 'precise', | 64 'version': 'precise', |
67 'bits': '64', | 65 'bits': '64', |
68 'builder': [ | 66 'builder': [ |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 'master': 'WebRTCTryServer', | 129 'master': 'WebRTCTryServer', |
132 'os': 'win', | 130 'os': 'win', |
133 'version': 'win7', | 131 'version': 'win7', |
134 'bits': '64', | 132 'bits': '64', |
135 'builder': [ | 133 'builder': [ |
136 'win_baremetal', | 134 'win_baremetal', |
137 ], | 135 ], |
138 'hostname': 'build23-a4', | 136 'hostname': 'build23-a4', |
139 } | 137 } |
140 ] | 138 ] |
OLD | NEW |