OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 # See master.experimental/slaves.cfg for documentation. | 7 # See master.experimental/slaves.cfg for documentation. |
8 | 8 |
9 | 9 |
10 def expand_extra_builders(extras, total): | 10 def expand_extra_builders(extras, total): |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 'os': 'win', | 564 'os': 'win', |
565 'version': 'win7', | 565 'version': 'win7', |
566 'bits': '64', | 566 'bits': '64', |
567 } for i in range(3, 6) | 567 } for i in range(3, 6) |
568 ] | 568 ] |
569 swarm_slaves = [] | 569 swarm_slaves = [] |
570 for i in range(511, 520): | 570 for i in range(511, 520): |
571 swarm_slaves.extend( | 571 swarm_slaves.extend( |
572 { | 572 { |
573 'master': 'TryServer', | 573 'master': 'TryServer', |
574 'builder': ['swarm_triggered'], | 574 'builder': [ |
| 575 # Note: they all do the exact same thing, but having different names |
| 576 # makes it easier for developpers. |
| 577 'linux_swarm_triggered', |
| 578 'mac_swarm_triggered', |
| 579 'win_swarm_triggered', |
| 580 ], |
575 'hostname': 'slave%d-c4' % i, | 581 'hostname': 'slave%d-c4' % i, |
576 'os': 'linux', | 582 'os': 'linux', |
577 'version': 'precise', | 583 'version': 'precise', |
578 'bits': '64', | 584 'bits': '64', |
579 'subdir': str(j), | 585 'subdir': str(j), |
580 } for j in xrange(20)) | 586 } for j in xrange(20)) |
581 | 587 |
582 win_tsan_slave = [ | 588 win_tsan_slave = [ |
583 { | 589 { |
584 'master': 'TryServer', | 590 'master': 'TryServer', |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 chromeframe_slave + | 638 chromeframe_slave + |
633 gpu_slaves + | 639 gpu_slaves + |
634 swarm_slaves + | 640 swarm_slaves + |
635 win_tsan_slave + | 641 win_tsan_slave + |
636 win_x64_slaves + | 642 win_x64_slaves + |
637 swarm_dumb_slaves + | 643 swarm_dumb_slaves + |
638 perf_bisect_slaves) | 644 perf_bisect_slaves) |
639 | 645 |
640 | 646 |
641 slaves = linux() + mac() + windows() + cros() + android() + ios() | 647 slaves = linux() + mac() + windows() + cros() + android() + ios() |
OLD | NEW |