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

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

Issue 1805263003: Adding Variable builders to cover all builders under master "chromium" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Rebase Created 4 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 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy') 10 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy')
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 'linux_chromium_chromeos_variable', 52 'linux_chromium_chromeos_variable',
53 'linux_chromium_clang_upload', 53 'linux_chromium_clang_upload',
54 'linux_chromium_compile_rel_ng', 54 'linux_chromium_compile_rel_ng',
55 'linux_chromium_dbg_ng', 55 'linux_chromium_dbg_ng',
56 'linux_chromium_gn_chromeos_variable', 56 'linux_chromium_gn_chromeos_variable',
57 'linux_chromium_gn_upload', 57 'linux_chromium_gn_upload',
58 'linux_chromium_msan_rel_ng', 58 'linux_chromium_msan_rel_ng',
59 'linux_chromium_tsan_rel_ng', 59 'linux_chromium_tsan_rel_ng',
60 'linux_chromium_practice_rel_ng', 60 'linux_chromium_practice_rel_ng',
61 'linux_chromium_variable', 61 'linux_chromium_variable',
62 'linux_chromium_variable_clobber',
62 'linux_deterministic', 63 'linux_deterministic',
63 'linux_ecs_ozone', 64 'linux_ecs_ozone',
64 'linux_nacl_sdk', 65 'linux_nacl_sdk',
65 'linux_nacl_sdk_build', 66 'linux_nacl_sdk_build',
66 'linux_optional_gpu_tests_rel', 67 'linux_optional_gpu_tests_rel',
67 'linux_site_isolation', 68 'linux_site_isolation',
68 'linux_valgrind', 69 'linux_valgrind',
69 ] 70 ]
70 71
71 optional_32_slaves = [897] 72 optional_32_slaves = [897]
72 optional_32_builders = [ 73 optional_32_builders = [
73 'linux_chromium_variable_32', 74 'linux_chromium_variable_32',
75 'linux_chromium_variable_32_clobber',
74 ] 76 ]
75 77
76 # Set up normal slaves. 78 # Set up normal slaves.
77 result = [] 79 result = []
78 for i, slave in enumerate(cq_slaves): 80 for i, slave in enumerate(cq_slaves):
79 result.append({ 81 result.append({
80 'master': 'TryServerChromiumLinux', 82 'master': 'TryServerChromiumLinux',
81 'os': 'linux', 83 'os': 'linux',
82 'version': 'precise', 84 'version': 'precise',
83 'bits': '64', 85 'bits': '64',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 'builder': ['linux_chromium_browser_side_navigation_rel'], 163 'builder': ['linux_chromium_browser_side_navigation_rel'],
162 'hostname': 'slave914-c4', 164 'hostname': 'slave914-c4',
163 'pool': 'linux_chromium_browser_side_navigation_rel', 165 'pool': 'linux_chromium_browser_side_navigation_rel',
164 } 166 }
165 ]) 167 ])
166 168
167 return result 169 return result
168 170
169 171
170 slaves = linux() 172 slaves = linux()
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.linux/master.cfg ('k') | masters/master.tryserver.chromium.mac/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698