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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_win.py

Issue 2156443003: tryserver.chromium.win: convert chromium_trybot builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: presubmit 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 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-win-archive', 9 'build_gs_bucket': 'chromium-win-archive',
10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders.
(...skipping 17 matching lines...) Expand all
28 }, 28 },
29 'bot_type': 'builder', 29 'bot_type': 'builder',
30 'compile_targets': [ 30 'compile_targets': [
31 'chromium_builder_tests', 31 'chromium_builder_tests',
32 ], 32 ],
33 'testing': { 33 'testing': {
34 'platform': 'win', 34 'platform': 'win',
35 }, 35 },
36 'enable_swarming': True, 36 'enable_swarming': True,
37 'use_isolate': True, 37 'use_isolate': True,
38 'checkout_dir': 'win',
38 }, 39 },
39 'Win10 Tests x64': { 40 'Win10 Tests x64': {
40 'chromium_config': 'chromium', 41 'chromium_config': 'chromium',
41 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 42 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
42 'gclient_config': 'chromium', 43 'gclient_config': 'chromium',
43 'chromium_config_kwargs': { 44 'chromium_config_kwargs': {
44 'BUILD_CONFIG': 'Release', 45 'BUILD_CONFIG': 'Release',
45 'TARGET_BITS': 64, 46 'TARGET_BITS': 64,
46 }, 47 },
47 'bot_type': 'tester', 48 'bot_type': 'tester',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 'chromium_config_kwargs': { 118 'chromium_config_kwargs': {
118 'BUILD_CONFIG': 'Release', 119 'BUILD_CONFIG': 'Release',
119 'TARGET_BITS': 64, 120 'TARGET_BITS': 64,
120 }, 121 },
121 'bot_type': 'builder', 122 'bot_type': 'builder',
122 'testing': { 123 'testing': {
123 'platform': 'win', 124 'platform': 'win',
124 }, 125 },
125 'enable_swarming': True, 126 'enable_swarming': True,
126 'use_isolate': True, 127 'use_isolate': True,
128 'checkout_dir': 'win',
127 }, 129 },
128 'Win 7 Tests x64 (1)': { 130 'Win 7 Tests x64 (1)': {
129 'chromium_config': 'chromium', 131 'chromium_config': 'chromium',
130 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 132 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
131 'gclient_config': 'chromium', 133 'gclient_config': 'chromium',
132 'chromium_config_kwargs': { 134 'chromium_config_kwargs': {
133 'BUILD_CONFIG': 'Release', 135 'BUILD_CONFIG': 'Release',
134 'TARGET_BITS': 64, 136 'TARGET_BITS': 64,
135 }, 137 },
136 'bot_type': 'tester', 138 'bot_type': 'tester',
(...skipping 19 matching lines...) Expand all
156 'BUILD_CONFIG': 'Release', 158 'BUILD_CONFIG': 'Release',
157 'TARGET_PLATFORM': 'win', 159 'TARGET_PLATFORM': 'win',
158 'TARGET_BITS': 32, 160 'TARGET_BITS': 32,
159 }, 161 },
160 'test_generators': [ 162 'test_generators': [
161 steps.generate_gtest, 163 steps.generate_gtest,
162 steps.generate_script, 164 steps.generate_script,
163 steps.generate_isolated_script, 165 steps.generate_isolated_script,
164 ], 166 ],
165 'enable_swarming': True, 167 'enable_swarming': True,
168 'checkout_dir': 'win_gyp',
166 'swarming_dimensions': { 169 'swarming_dimensions': {
167 'cpu': 'x86-64', 170 'cpu': 'x86-64',
168 'os': 'Windows-8.1-SP0', 171 'os': 'Windows-8.1-SP0',
169 }, 172 },
170 'testing': { 173 'testing': {
171 'platform': 'win', 174 'platform': 'win',
172 }, 175 },
173 }, 176 },
174 'Win x64 Builder (dbg)': { 177 'Win x64 Builder (dbg)': {
175 'chromium_config': 'chromium', 178 'chromium_config': 'chromium',
(...skipping 24 matching lines...) Expand all
200 }, 203 },
201 'bot_type': 'builder', 204 'bot_type': 'builder',
202 'compile_targets': [ 205 'compile_targets': [
203 'chromium_builder_tests', 206 'chromium_builder_tests',
204 ], 207 ],
205 'testing': { 208 'testing': {
206 'platform': 'win', 209 'platform': 'win',
207 }, 210 },
208 'enable_swarming': True, 211 'enable_swarming': True,
209 'use_isolate': True, 212 'use_isolate': True,
213 'checkout_dir': 'win',
210 }, 214 },
211 'Win7 Tests (dbg)(1)': { 215 'Win7 Tests (dbg)(1)': {
212 'chromium_config': 'chromium', 216 'chromium_config': 'chromium',
213 'chromium_apply_config': ['ninja_confirm_noop'], 217 'chromium_apply_config': ['ninja_confirm_noop'],
214 'gclient_config': 'chromium', 218 'gclient_config': 'chromium',
215 'chromium_config_kwargs': { 219 'chromium_config_kwargs': {
216 'BUILD_CONFIG': 'Debug', 220 'BUILD_CONFIG': 'Debug',
217 'TARGET_BITS': 32, 221 'TARGET_BITS': 32,
218 }, 222 },
219 'bot_type': 'tester', 223 'bot_type': 'tester',
(...skipping 16 matching lines...) Expand all
236 'BUILD_CONFIG': 'Debug', 240 'BUILD_CONFIG': 'Debug',
237 'TARGET_PLATFORM': 'win', 241 'TARGET_PLATFORM': 'win',
238 'TARGET_BITS': 32, 242 'TARGET_BITS': 32,
239 }, 243 },
240 'test_generators': [ 244 'test_generators': [
241 steps.generate_gtest, 245 steps.generate_gtest,
242 steps.generate_script, 246 steps.generate_script,
243 steps.generate_isolated_script, 247 steps.generate_isolated_script,
244 ], 248 ],
245 'enable_swarming': True, 249 'enable_swarming': True,
250 'checkout_dir': 'win_gyp',
246 'testing': { 251 'testing': {
247 'platform': 'win', 252 'platform': 'win',
248 }, 253 },
249 }, 254 },
250 'WinClang64 (dbg)': { 255 'WinClang64 (dbg)': {
251 'chromium_config': 'chromium_win_clang', 256 'chromium_config': 'chromium_win_clang',
252 'chromium_apply_config': ['mb'], 257 'chromium_apply_config': ['mb'],
253 'gclient_config': 'chromium', 258 'gclient_config': 'chromium',
254 'chromium_config_kwargs': { 259 'chromium_config_kwargs': {
255 'BUILD_CONFIG': 'Debug', 260 'BUILD_CONFIG': 'Debug',
256 'TARGET_PLATFORM': 'win', 261 'TARGET_PLATFORM': 'win',
257 'TARGET_BITS': 64, 262 'TARGET_BITS': 64,
258 }, 263 },
259 'compile_targets': [ 264 'compile_targets': [
260 'all', 265 'all',
261 ], 266 ],
262 # Recipes builds Debug builds with component=shared_library by default. 267 # Recipes builds Debug builds with component=shared_library by default.
263 'bot_type': 'builder', 268 'bot_type': 'builder',
264 'testing': { 269 'testing': {
265 'platform': 'win', 270 'platform': 'win',
266 }, 271 },
267 'use_isolate': True, 272 'use_isolate': True,
268 'enable_swarming': True, 273 'enable_swarming': True,
269 # Workaround so that recipes doesn't add random build targets to our 274 # Workaround so that recipes doesn't add random build targets to our
270 # compile line. We want to build everything. 275 # compile line. We want to build everything.
271 'add_tests_as_compile_targets': False, 276 'add_tests_as_compile_targets': False,
277 'checkout_dir': 'win_clang',
272 }, 278 },
273 }, 279 },
274 } 280 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698