| 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', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 ], | 36 ], |
| 37 } for i in LINUX_TEST_BUILDSLAVES | 37 } for i in LINUX_TEST_BUILDSLAVES |
| 38 ] + [ | 38 ] + [ |
| 39 { | 39 { |
| 40 'master': 'Skia', | 40 'master': 'Skia', |
| 41 'hostname': 'skiabot-shuttle-ubuntu12-003', | 41 'hostname': 'skiabot-shuttle-ubuntu12-003', |
| 42 'builder': [ | 42 'builder': [ |
| 43 'Test-ChromeOS-GCC-Link-CPU-AVX-x86_64-Debug', | 43 'Test-ChromeOS-GCC-Link-CPU-AVX-x86_64-Debug', |
| 44 'Test-ChromeOS-GCC-Link-CPU-AVX-x86_64-Release' | 44 'Test-ChromeOS-GCC-Link-CPU-AVX-x86_64-Release' |
| 45 ], | 45 ], |
| 46 'ssh_host': '192.168.1.123', | |
| 47 'ssh_port': '22', | |
| 48 'ssh_user': 'root', | |
| 49 }, | 46 }, |
| 50 { | 47 { |
| 51 'master': 'Skia', | 48 'master': 'Skia', |
| 52 'hostname': 'skiabot-shuttle-ubuntu12-004', | 49 'hostname': 'skiabot-shuttle-ubuntu12-004', |
| 53 'builder': [ | 50 'builder': [ |
| 54 'Test-ChromeOS-GCC-Daisy-CPU-NEON-Arm7-Debug', | 51 'Test-ChromeOS-GCC-Daisy-CPU-NEON-Arm7-Debug', |
| 55 'Test-ChromeOS-GCC-Daisy-CPU-NEON-Arm7-Release', | 52 'Test-ChromeOS-GCC-Daisy-CPU-NEON-Arm7-Release', |
| 56 ], | 53 ], |
| 57 'ssh_host': '192.168.1.134', | |
| 58 'ssh_port': '22', | |
| 59 'ssh_user': 'root', | |
| 60 }, | 54 }, |
| 61 ] + [ | 55 ] + [ |
| 62 { | 56 { |
| 63 'master': 'Skia', | 57 'master': 'Skia', |
| 64 'hostname': 'skiabot-shuttle-ubuntu12-gtx550ti-001', | 58 'hostname': 'skiabot-shuttle-ubuntu12-gtx550ti-001', |
| 65 'builder': [ | 59 'builder': [ |
| 66 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Debug-ZeroGPUCache', | 60 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Debug-ZeroGPUCache', |
| 67 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', | 61 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', |
| 68 ], | 62 ], |
| 69 }, | 63 }, |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 { | 211 { |
| 218 'master': 'Skia', | 212 'master': 'Skia', |
| 219 'hostname': 'build5-m3', | 213 'hostname': 'build5-m3', |
| 220 'builder': [ | 214 'builder': [ |
| 221 'Test-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Debug-ASAN', | 215 'Test-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Debug-ASAN', |
| 222 'Test-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Debug-UBSAN', | 216 'Test-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Debug-UBSAN', |
| 223 'Test-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-TSAN', | 217 'Test-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-TSAN', |
| 224 ], | 218 ], |
| 225 }, | 219 }, |
| 226 ] | 220 ] |
| OLD | NEW |