| 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 slaves = [ | 5 slaves = [ |
| 6 { | 6 { |
| 7 'master': 'Skia', | 7 'master': 'Skia', |
| 8 'hostname': 'skiabot-shuttle-ubuntu12-001', | 8 'hostname': 'skiabot-shuttle-ubuntu12-001', |
| 9 'builder': 'Test-Ubuntu12-ShuttleA-NoGPU-x86_64-Debug', | 9 'builder': 'Test-Ubuntu12-ShuttleA-NoGPU-x86_64-Debug', |
| 10 'os': 'linux', | 10 'os': 'linux', |
| 11 'version': 'precise', | 11 'version': 'precise', |
| 12 'bits': '64', | 12 'bits': '64', |
| 13 'recipe': 'skia/build_and_test', | |
| 14 'build_config': 'Debug', | |
| 15 'auto_reboot': False, | |
| 16 }, | 13 }, |
| 17 { | 14 { |
| 18 'master': 'Skia', | 15 'master': 'Skia', |
| 19 'hostname': 'skiabot-linux-canary-000', | 16 'hostname': 'skiabot-linux-canary-000', |
| 20 'builder': 'Linux Builder', | 17 'builder': [ |
| 18 'Linux Builder', |
| 19 'Linux Tests', |
| 20 ], |
| 21 'os': 'linux', | 21 'os': 'linux', |
| 22 'version': 'precise', | 22 'version': 'precise', |
| 23 'bits': '64', | 23 'bits': '64', |
| 24 'recipe': 'chromium', | |
| 25 'build_config': 'Debug', | |
| 26 'auto_reboot': False, | |
| 27 }, | |
| 28 { | |
| 29 'master': 'Skia', | |
| 30 'hostname': 'skiabot-linux-canary-001', | |
| 31 'builder': 'Linux Tests', | |
| 32 'os': 'linux', | |
| 33 'version': 'precise', | |
| 34 'bits': '64', | |
| 35 'recipe': 'chromium', | |
| 36 'build_config': 'Debug', | |
| 37 'triggered_by': 'Linux Builder', | |
| 38 'auto_reboot': False, | |
| 39 }, | 24 }, |
| 40 ] | 25 ] |
| 41 | |
| OLD | NEW |