| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 | 5 |
| 6 INTEGER_WIDTH = 3 | 6 INTEGER_WIDTH = 3 |
| 7 | 7 |
| 8 LINUX_CANARY_BUILDERS = [ | 8 LINUX_CANARY_BUILDERS = [ |
| 9 'Linux Builder', | 9 'Linux Builder', |
| 10 'Linux Tests', | 10 'Linux Tests', |
| 11 ] | 11 ] |
| 12 LINUX_CANARY_BUILDSLAVES = range(3) | 12 LINUX_CANARY_BUILDSLAVES = range(3) |
| 13 LINUX_TEST_BUILDSLAVES = range(12) | 13 LINUX_TEST_BUILDSLAVES = range(12) |
| 14 | 14 |
| 15 WIN_CANARY_BUILDSLAVES = range(3) | 15 WIN_CANARY_BUILDSLAVES = range(3) |
| 16 WIN_CANARY_BUILDERS = [ | 16 WIN_CANARY_BUILDERS = [ |
| 17 'Win Builder', | 17 'Win Builder', |
| 18 'Win7 Tests (1)', | 18 'Win7 Tests (1)', |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 | 21 |
| 22 slaves = [ | 22 slaves = [ |
| 23 { | 23 { |
| 24 'master': 'Skia', | 24 'master': 'Skia', |
| 25 'hostname': 'skiabot-linux-tester-%s' % ('%d' % i).zfill(INTEGER_WIDTH), | 25 'hostname': 'skiabot-linux-tester-%s' % ('%d' % i).zfill(INTEGER_WIDTH), |
| 26 'builder': [ | 26 'builder': [ |
| 27 'Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release', | 27 'Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release', |
| 28 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage', | |
| 29 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug', | 28 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug', |
| 30 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug', | 29 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug', |
| 31 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-ASAN', | 30 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-ASAN', |
| 32 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN', | 31 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN', |
| 33 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAG
ECACHE', | 32 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAG
ECACHE', |
| 34 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release', | 33 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release', |
| 35 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Fast', | 34 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Fast', |
| 36 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD', | 35 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD', |
| 37 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared', | 36 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared', |
| 38 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN', | 37 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN', |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 { | 234 { |
| 236 'master': 'Skia', | 235 'master': 'Skia', |
| 237 'hostname': 'skiabot-linux-swarm-012', | 236 'hostname': 'skiabot-linux-swarm-012', |
| 238 'builder': [ | 237 'builder': [ |
| 239 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', | 238 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', |
| 240 ], | 239 ], |
| 241 'os': 'linux', | 240 'os': 'linux', |
| 242 'version': 'precise', | 241 'version': 'precise', |
| 243 'bits': '64', | 242 'bits': '64', |
| 244 }, | 243 }, |
| 244 { |
| 245 'master': 'Skia', |
| 246 'hostname': 'skiabot-linux-swarm-013', |
| 247 'builder': [ |
| 248 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage', |
| 249 ], |
| 250 'os': 'linux', |
| 251 'version': 'precise', |
| 252 'bits': '64', |
| 253 }, |
| 245 ] | 254 ] |
| OLD | NEW |