| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright 2013 The Chromium Authors. All rights reserved. | 4 # Copyright 2013 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 slaves = [] | 8 slaves = [] |
| 9 | 9 |
| 10 slaves.extend([ | 10 slaves.extend([ |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'v8_win_rel', | 66 'v8_win_rel', |
| 67 'v8_win_rel_ng', | 67 'v8_win_rel_ng', |
| 68 'v8_win_dbg', | 68 'v8_win_dbg', |
| 69 'v8_win_compile_dbg', | 69 'v8_win_compile_dbg', |
| 70 'v8_win_nosnap_shared_compile_rel', | 70 'v8_win_nosnap_shared_compile_rel', |
| 71 'v8_win_nosnap_shared_rel', | 71 'v8_win_nosnap_shared_rel', |
| 72 'v8_win64_rel', | 72 'v8_win64_rel', |
| 73 'v8_win64_rel_ng', | 73 'v8_win64_rel_ng', |
| 74 'v8_win64_compile_rel', | 74 'v8_win64_compile_rel', |
| 75 'v8_win64_dbg', | 75 'v8_win64_dbg', |
| 76 'v8_swarming_staging', | |
| 77 ], | 76 ], |
| 78 'hostname': 'vm%d-m4' % i, | 77 'hostname': 'vm%d-m4' % i, |
| 79 'os': 'win', | 78 'os': 'win', |
| 80 'version': 'win7', | 79 'version': 'win7', |
| 81 'bits': '64', | 80 'bits': '64', |
| 82 } for i in range(204, 207) + [259, 261, 262] | 81 } for i in range(204, 207) + [259, 261, 262] |
| 83 ]) | 82 ]) |
| 84 | 83 |
| 85 slaves.extend([ | 84 slaves.extend([ |
| 86 { | 85 { |
| 87 'master': 'V8TryServer', | 86 'master': 'V8TryServer', |
| 88 'builder': [ | 87 'builder': [ |
| 89 'v8_mac_rel', | 88 'v8_mac_rel', |
| 90 'v8_mac_dbg', | 89 'v8_mac_dbg', |
| 91 'v8_mac_gc_stress_dbg', | 90 'v8_mac_gc_stress_dbg', |
| 92 'v8_mac64_rel', | 91 'v8_mac64_rel', |
| 93 'v8_mac64_dbg', | 92 'v8_mac64_dbg', |
| 94 'v8_mac64_asan_rel', | 93 'v8_mac64_asan_rel', |
| 94 'v8_swarming_staging', |
| 95 ], | 95 ], |
| 96 'hostname': name, | 96 'hostname': name, |
| 97 'os': 'mac', | 97 'os': 'mac', |
| 98 'version': '10.9', | 98 'version': '10.9', |
| 99 'bits': '64', | 99 'bits': '64', |
| 100 } for name in ['vm660-m4', 'vm820-m4', 'vm880-m4'] | 100 } for name in ['vm660-m4', 'vm820-m4', 'vm880-m4'] |
| 101 ]) | 101 ]) |
| 102 | 102 |
| 103 slaves.extend([ | 103 slaves.extend([ |
| 104 { | 104 { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 119 slaves.append({ | 119 slaves.append({ |
| 120 'master': 'V8TryServer', | 120 'master': 'V8TryServer', |
| 121 'builder': ['v8_win_rel_ng_triggered', | 121 'builder': ['v8_win_rel_ng_triggered', |
| 122 'v8_win64_rel_ng_triggered'], | 122 'v8_win64_rel_ng_triggered'], |
| 123 'hostname': 'slave400-c4', | 123 'hostname': 'slave400-c4', |
| 124 'os': 'linux', | 124 'os': 'linux', |
| 125 'version': 'trusty', | 125 'version': 'trusty', |
| 126 'bits': '64', | 126 'bits': '64', |
| 127 'subdir': str(j), | 127 'subdir': str(j), |
| 128 }) | 128 }) |
| OLD | NEW |