| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 'master': 'V8', | 183 'master': 'V8', |
| 184 'builder': ['V8 Linux64 TSAN', | 184 'builder': ['V8 Linux64 TSAN', |
| 185 'V8 Linux gcc 4.8'], | 185 'V8 Linux gcc 4.8'], |
| 186 'hostname': 'slave82-c3', # Fast VM. | 186 'hostname': 'slave82-c3', # Fast VM. |
| 187 'os': 'linux', | 187 'os': 'linux', |
| 188 'version': 'trusty', | 188 'version': 'trusty', |
| 189 'bits': '64', | 189 'bits': '64', |
| 190 }, | 190 }, |
| 191 { | 191 { |
| 192 'master': 'V8', | 192 'master': 'V8', |
| 193 'builder': ['V8 Linux64 - cfi', 'V8 Linux - swarming staging'], | 193 'builder': ['V8 Linux64 - cfi', |
| 194 'V8 Linux - swarming staging', |
| 195 'V8 Linux64 - memcheck'], |
| 194 'hostname': 'slave80-c3', | 196 'hostname': 'slave80-c3', |
| 195 'os': 'linux', | 197 'os': 'linux', |
| 196 'version': 'precise', | 198 'version': 'precise', |
| 197 'bits': '64', | 199 'bits': '64', |
| 198 }, | 200 }, |
| 199 { | 201 { |
| 200 'master': 'V8', | 202 'master': 'V8', |
| 201 'builder': ['V8 Linux - arm64 - sim - MSAN'], | 203 'builder': ['V8 Linux - arm64 - sim - MSAN'], |
| 202 'hostname': 'slave30-c3', | 204 'hostname': 'slave30-c3', |
| 203 'os': 'linux', | 205 'os': 'linux', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 225 'builder': ['V8 Mips - big endian - nosnap - 1'], | 227 'builder': ['V8 Mips - big endian - nosnap - 1'], |
| 226 'hostname': 'build28-a3', | 228 'hostname': 'build28-a3', |
| 227 }, | 229 }, |
| 228 { | 230 { |
| 229 'master': 'V8', | 231 'master': 'V8', |
| 230 'builder': ['V8 Mips - big endian - nosnap - 2'], | 232 'builder': ['V8 Mips - big endian - nosnap - 2'], |
| 231 'hostname': 'build29-a3', | 233 'hostname': 'build29-a3', |
| 232 }, | 234 }, |
| 233 # FYI builders. | 235 # FYI builders. |
| 234 { | 236 { |
| 235 # Note: vm349 has valgrind installed for memcheck. | |
| 236 'master': 'V8', | 237 'master': 'V8', |
| 237 'builder': ['V8 Linux - memcheck', | 238 'builder': ['V8 Linux - x87 - nosnap - debug'], |
| 238 'V8 Linux - x87 - nosnap - debug'], | |
| 239 'hostname': 'vm349-m3', | 239 'hostname': 'vm349-m3', |
| 240 'os': 'linux', | 240 'os': 'linux', |
| 241 'version': 'precise', | 241 'version': 'precise', |
| 242 'bits': '32', | 242 'bits': '32', |
| 243 }, | 243 }, |
| 244 { | 244 { |
| 245 'master': 'V8', | 245 'master': 'V8', |
| 246 'builder': ['V8 Linux - predictable', | 246 'builder': ['V8 Linux - predictable', |
| 247 'V8 Linux - noi18n - debug', | 247 'V8 Linux - noi18n - debug', |
| 248 'V8 Linux - interpreted regexp'], | 248 'V8 Linux - interpreted regexp'], |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 'V8 Arm', | 424 'V8 Arm', |
| 425 'V8 Arm - debug', | 425 'V8 Arm - debug', |
| 426 'V8 Arm GC Stress', | 426 'V8 Arm GC Stress', |
| 427 'V8 Win32', | 427 'V8 Win32', |
| 428 'V8 Win32 - debug', | 428 'V8 Win32 - debug', |
| 429 ], | 429 ], |
| 430 [ | 430 [ |
| 431 'slave83-c3', | 431 'slave83-c3', |
| 432 ], | 432 ], |
| 433 ) | 433 ) |
| OLD | NEW |