| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2011 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 # See master.experimental/slaves.cfg for documentation. | 8 # See master.experimental/slaves.cfg for documentation. |
| 9 | 9 |
| 10 | 10 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Nexus4', | 40 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Nexus4', |
| 41 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-Nexus4', | 41 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-Nexus4', |
| 42 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Nexus7', | 42 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Nexus7', |
| 43 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-Nexus7', | 43 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-Nexus7', |
| 44 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Nexus10', | 44 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Nexus10', |
| 45 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-Nexus10', | 45 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-Nexus10', |
| 46 'Build-Ubuntu13.10-GCC4.8-x86-Debug-IntelRhb', | 46 'Build-Ubuntu13.10-GCC4.8-x86-Debug-IntelRhb', |
| 47 'Build-Ubuntu13.10-GCC4.8-x86-Release-IntelRhb', | 47 'Build-Ubuntu13.10-GCC4.8-x86-Release-IntelRhb', |
| 48 'Build-Ubuntu13.10-GCC4.8-x86-Debug-Alex', | 48 'Build-Ubuntu13.10-GCC4.8-x86-Debug-Alex', |
| 49 'Build-Ubuntu13.10-GCC4.8-x86-Release-Alex', | 49 'Build-Ubuntu13.10-GCC4.8-x86-Release-Alex', |
| 50 'Build-Ubuntu13.10-GCC4.8-x86_64-Release-Valgrind', | |
| 51 'Build-Ubuntu13.10-GCC4.8-x86_64-Debug-Link', | 50 'Build-Ubuntu13.10-GCC4.8-x86_64-Debug-Link', |
| 52 'Build-Ubuntu13.10-GCC4.8-x86_64-Release-Link', | 51 'Build-Ubuntu13.10-GCC4.8-x86_64-Release-Link', |
| 53 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Daisy', | 52 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Daisy', |
| 54 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-Daisy', | 53 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-Daisy', |
| 55 'Build-Ubuntu13.10-GCC4.8-Mips-Debug-Mips', | 54 'Build-Ubuntu13.10-GCC4.8-Mips-Debug-Mips', |
| 56 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-NvidiaLogan', | 55 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-NvidiaLogan', |
| 57 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-NvidiaLogan', | 56 'Build-Ubuntu13.10-GCC4.8-Arm7-Release-NvidiaLogan', |
| 58 'Build-Ubuntu13.10-Clang-x86_64-Debug', | 57 'Build-Ubuntu13.10-Clang-x86_64-Debug', |
| 59 'Build-Ubuntu13.10-Clang-x86_64-Debug-ASAN', | |
| 60 'Build-Ubuntu13.10-Clang-x86_64-Debug-TSAN', | |
| 61 ] | 58 ] |
| 62 | 59 |
| 63 | 60 |
| 64 def _Format(obj, dictionary): | 61 def _Format(obj, dictionary): |
| 65 """ Recursively apply the dictionary to any format strings in the requested | 62 """ Recursively apply the dictionary to any format strings in the requested |
| 66 object. Returns a copy and does not modify the original. """ | 63 object. Returns a copy and does not modify the original. """ |
| 67 if isinstance(obj, str): | 64 if isinstance(obj, str): |
| 68 return obj % dictionary | 65 return obj % dictionary |
| 69 if isinstance(obj, list): | 66 if isinstance(obj, list): |
| 70 return [_Format(item, dictionary) for item in obj] | 67 return [_Format(item, dictionary) for item in obj] |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 303 |
| 307 ], | 304 ], |
| 308 'ssh_host': '192.168.1.134', | 305 'ssh_host': '192.168.1.134', |
| 309 'ssh_port': '22', | 306 'ssh_port': '22', |
| 310 }, | 307 }, |
| 311 ] + [ | 308 ] + [ |
| 312 { | 309 { |
| 313 'master': 'Skia', | 310 'master': 'Skia', |
| 314 'hostname': 'skiabot-linux-sanitizer-%s-A' % ('%d' % i).zfill(INTEGER_WIDTH)
, | 311 'hostname': 'skiabot-linux-sanitizer-%s-A' % ('%d' % i).zfill(INTEGER_WIDTH)
, |
| 315 'builder': [ | 312 'builder': [ |
| 316 'Test-Ubuntu13.10-ShuttleA-HD2000-x86_64-Debug-ASAN', | 313 'Test-Ubuntu13.10-GCE-NoGPU-x86_64-Debug-ASAN', |
| 317 ], | 314 ], |
| 318 'num_cores': '8', | 315 'num_cores': '8', |
| 319 } for i in xrange(4) | 316 } for i in xrange(4) |
| 320 ] + [ | 317 ] + [ |
| 321 { | 318 { |
| 322 'master': 'Skia', | 319 'master': 'Skia', |
| 323 'hostname': 'skiabot-shuttle-ubuntu12-gtx550ti-001', | 320 'hostname': 'skiabot-shuttle-ubuntu12-gtx550ti-001', |
| 324 'builder': [ | 321 'builder': [ |
| 325 'Test-Ubuntu12-ShuttleA-GTX550Ti-x86_64-Debug-ZeroGPUCache', | 322 'Test-Ubuntu12-ShuttleA-GTX550Ti-x86_64-Debug-ZeroGPUCache', |
| 326 'Test-Ubuntu12-ShuttleA-GTX550Ti-x86_64-Release-Valgrind', | 323 'Test-Ubuntu12-ShuttleA-GTX550Ti-x86_64-Release-Valgrind', |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 'Canary-Moz2D-Ubuntu12-GCC-x86_64-Release', | 616 'Canary-Moz2D-Ubuntu12-GCC-x86_64-Release', |
| 620 ], | 617 ], |
| 621 'num_cores': '8', | 618 'num_cores': '8', |
| 622 }, | 619 }, |
| 623 | 620 |
| 624 ] + [ | 621 ] + [ |
| 625 { | 622 { |
| 626 'master': 'FYISkia', | 623 'master': 'FYISkia', |
| 627 'hostname': 'skiabot-linux-sanitizer-%s-T' % ('%d' % i).zfill(INTEGER_WIDTH)
, | 624 'hostname': 'skiabot-linux-sanitizer-%s-T' % ('%d' % i).zfill(INTEGER_WIDTH)
, |
| 628 'builder': [ | 625 'builder': [ |
| 629 'Test-Ubuntu13-ShuttleA-HD2000-x86_64-Debug-TSAN', | 626 'Test-Ubuntu13.10-GCE-NoGPU-x86_64-Release-TSAN', |
| 630 ], | 627 ], |
| 631 'num_cores': '8', | 628 'num_cores': '8', |
| 632 } for i in xrange(4) | 629 } for i in xrange(4) |
| 633 ] + [ | 630 ] + [ |
| 634 | 631 |
| 635 { | 632 { |
| 636 'master': 'FYISkia', | 633 'master': 'FYISkia', |
| 637 'hostname': 'skiabot-shuttle-ubuntu13-003', | 634 'hostname': 'skiabot-shuttle-ubuntu13-003', |
| 638 'builder': [ | 635 'builder': [ |
| 639 'Housekeeper-Nightly-Monitoring', | 636 'Housekeeper-Nightly-Monitoring', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 | 675 |
| 679 cq_trybots = [ | 676 cq_trybots = [ |
| 680 'Build-Mac10.8-Clang-x86-Release-Trybot', | 677 'Build-Mac10.8-Clang-x86-Release-Trybot', |
| 681 'Build-Ubuntu13.10-GCC4.8-x86_64-Release-Trybot', | 678 'Build-Ubuntu13.10-GCC4.8-x86_64-Release-Trybot', |
| 682 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Nexus7-Trybot', | 679 'Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Nexus7-Trybot', |
| 683 'Test-Ubuntu13.10-ShuttleA-NoGPU-x86_64-Debug-Trybot', | 680 'Test-Ubuntu13.10-ShuttleA-NoGPU-x86_64-Debug-Trybot', |
| 684 # The Win7 compile trybot is currently disabled, because those bots are slow | 681 # The Win7 compile trybot is currently disabled, because those bots are slow |
| 685 # and tend to lag behind. | 682 # and tend to lag behind. |
| 686 # 'Build-Win7-VS2010-x86-Release-Trybot', | 683 # 'Build-Win7-VS2010-x86-Release-Trybot', |
| 687 ] | 684 ] |
| OLD | NEW |