Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Side by Side Diff: masters/master.chromium.fyi/slaves.cfg

Issue 1992083002: Add 30 more slaves into 'LTO Linux Perf' buildbot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: fix presubmit warning Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | scripts/slave/compile.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2012 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 'hostname': 'slave59-c1', 604 'hostname': 'slave59-c1',
605 'os': 'linux', 605 'os': 'linux',
606 'version': 'trusty', 606 'version': 'trusty',
607 'bits': '64', 607 'bits': '64',
608 }, 608 },
609 { 609 {
610 'master': 'ChromiumFYI', 610 'master': 'ChromiumFYI',
611 'builder': [ 611 'builder': [
612 'CFI Linux CF', 612 'CFI Linux CF',
613 'LTO Linux', 613 'LTO Linux',
614 'LTO Linux Perf',
615 ], 614 ],
616 'hostname': 'slave33-c1', 615 'hostname': 'slave33-c1',
617 'os': 'linux', 616 'os': 'linux',
618 'version': 'trusty', 617 'version': 'trusty',
619 'bits': '64', 618 'bits': '64',
620 }, 619 },
621 { 620 {
622 'master': 'ChromiumFYI', 621 'master': 'ChromiumFYI',
623 'builder': 'Win 10 Fast Ring', 622 'builder': 'Win 10 Fast Ring',
624 'hostname': 'vm17-m1', 623 'hostname': 'vm17-m1',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 }, 678 },
680 { 679 {
681 'master': 'ChromiumFYI', 680 'master': 'ChromiumFYI',
682 'builder': 'Linux Kitchen (annotated_run)', 681 'builder': 'Linux Kitchen (annotated_run)',
683 'hostname': 'slave74-c1', 682 'hostname': 'slave74-c1',
684 'os': 'linux', 683 'os': 'linux',
685 'version': 'precise', 684 'version': 'precise',
686 'bits': '64', 685 'bits': '64',
687 }, 686 },
688 ] 687 ]
688
689 for slave in range(78, 108):
690 slaves.append({
691 'master': 'ChromiumFYI',
692 'builder': 'LTO Linux Perf',
693 'hostname': 'slave%d-c1' % slave,
694 'os': 'linux',
695 'version': 'trusty',
696 'bits': '64',
697 })
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/compile.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698