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

Side by Side Diff: masters/master.tryserver.chromium.linux/slaves.cfg

Issue 943113002: Add new site isolation trybot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase Created 5 years, 9 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
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 # Copyright 2014 The Chromium Authors. All rights reserved. 3 # Copyright 2014 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 def linux(): 9 def linux():
10 linux_arm_testers = [9] 10 linux_arm_testers = [9]
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 { 79 {
80 'master': 'TryServerChromiumLinux', 80 'master': 'TryServerChromiumLinux',
81 'os': 'linux', 81 'os': 'linux',
82 'version': 'precise', 82 'version': 'precise',
83 'bits': '64', 83 'bits': '64',
84 'builder': 'linux_clang_tsan', 84 'builder': 'linux_clang_tsan',
85 'hostname': 'slave496-c4', 85 'hostname': 'slave496-c4',
86 } 86 }
87 ) 87 )
88 88
89 result.append(
90 {
91 'master': 'TryServerChromiumLinux',
92 'os': 'linux',
93 'version': 'precise',
94 'bits': '64',
95 'builder': 'linux_site_isolation',
96 'hostname': 'slave568-c4',
97 }
98 )
99
89 result.extend( 100 result.extend(
90 { 101 {
91 'master': 'TryServerChromiumLinux', 102 'master': 'TryServerChromiumLinux',
92 'os': 'linux', 103 'os': 'linux',
93 'version': 'quantal', 104 'version': 'quantal',
94 'bits': '32', 105 'bits': '32',
95 'builder': 'linux_arm_tester', 106 'builder': 'linux_arm_tester',
96 'hostname': 'build%d-a4' % i, 107 'hostname': 'build%d-a4' % i,
97 } for i in linux_arm_testers 108 } for i in linux_arm_testers
98 ) 109 )
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 'os': 'linux', 209 'os': 'linux',
199 'version': 'precise', 210 'version': 'precise',
200 'bits': '64', 211 'bits': '64',
201 } for i in range(520, 540) 212 } for i in range(520, 540)
202 ] 213 ]
203 214
204 return compile_slaves + test_slaves + amp_slaves + aosp_slaves 215 return compile_slaves + test_slaves + amp_slaves + aosp_slaves
205 216
206 217
207 slaves = linux() + android() 218 slaves = linux() + android()
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.linux/master.cfg ('k') | scripts/slave/recipes/chromium_trybot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698