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

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

Issue 2153503006: Add config for Linux layout test try bot with --enable-slimming-paint-v2. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix builder name in master.cfg. Created 4 years, 5 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 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy') 10 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy')
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 'master': 'TryServerChromiumLinux', 166 'master': 'TryServerChromiumLinux',
167 'os': 'linux', 167 'os': 'linux',
168 'version': 'precise', 168 'version': 'precise',
169 'bits': '64', 169 'bits': '64',
170 'builder': ['linux_chromium_browser_side_navigation_rel'], 170 'builder': ['linux_chromium_browser_side_navigation_rel'],
171 'hostname': 'slave914-c4', 171 'hostname': 'slave914-c4',
172 'pool': 'linux_chromium_browser_side_navigation_rel', 172 'pool': 'linux_chromium_browser_side_navigation_rel',
173 } 173 }
174 ]) 174 ])
175 175
176 result.extend([
177 {
178 'master': 'TryServerChromiumLinux',
179 'os': 'linux',
180 'version': 'precise',
181 'bits': '64',
182 'builder': ['linux_layout_tests_slimming_paint_v2'],
183 'hostname': 'slave775-c4',
184 'pool': 'linux_optional1',
qyearsley 2016/07/20 23:33:39 Note: I'm not sure what effect this field has - do
Paweł Hajdan Jr. 2016/07/22 13:36:12 Looks like this is a new pool with just one slave,
qyearsley 2016/07/22 16:42:06 There are some builders added above that have the
185 }
186 ])
187
176 return result 188 return result
177 189
178 190
179 slaves = linux() 191 slaves = linux()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698