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

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

Issue 1905213002: Move Win x64 clobber bot and remove Win x64 GN bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix indent Created 4 years, 8 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 | Annotate | Revision Log
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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 ], 141 ],
142 'tests': [ 142 'tests': [
143 steps.MiniInstallerTest(), 143 steps.MiniInstallerTest(),
144 ], 144 ],
145 'parent_buildername': 'Win x64 Builder', 145 'parent_buildername': 'Win x64 Builder',
146 'testing': { 146 'testing': {
147 'platform': 'win', 147 'platform': 'win',
148 }, 148 },
149 'enable_swarming': True, 149 'enable_swarming': True,
150 }, 150 },
151 'Win x64 GN': {
152 'chromium_config': 'chromium',
153 'chromium_apply_config': ['mb'],
154 'gclient_config': 'chromium',
155 'chromium_config_kwargs': {
156 'BUILD_CONFIG': 'Release',
157 'TARGET_PLATFORM': 'win',
158 'TARGET_BITS': 64,
159 },
160 'test_generators': [
161 steps.generate_gtest,
162 steps.generate_script,
163 steps.generate_isolated_script,
164 ],
165 'enable_swarming': True,
166 'testing': {
167 'platform': 'win',
168 },
169 },
170 'Win8 Aura': { 151 'Win8 Aura': {
171 'chromium_config': 'chromium', 152 'chromium_config': 'chromium',
172 'chromium_apply_config': ['mb'], 153 'chromium_apply_config': ['mb'],
173 'gclient_config': 'chromium', 154 'gclient_config': 'chromium',
174 'chromium_config_kwargs': { 155 'chromium_config_kwargs': {
175 'BUILD_CONFIG': 'Release', 156 'BUILD_CONFIG': 'Release',
176 'TARGET_PLATFORM': 'win', 157 'TARGET_PLATFORM': 'win',
177 'TARGET_BITS': 32, 158 'TARGET_BITS': 32,
178 }, 159 },
179 'test_generators': [ 160 'test_generators': [
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 steps.generate_gtest, 218 steps.generate_gtest,
238 steps.generate_script, 219 steps.generate_script,
239 steps.generate_isolated_script, 220 steps.generate_isolated_script,
240 ], 221 ],
241 'parent_buildername': 'Win Builder (dbg)', 222 'parent_buildername': 'Win Builder (dbg)',
242 'testing': { 223 'testing': {
243 'platform': 'win', 224 'platform': 'win',
244 }, 225 },
245 'enable_swarming': True, 226 'enable_swarming': True,
246 }, 227 },
247 'Win x64 GN (dbg)': {
248 'chromium_config': 'chromium',
249 'chromium_apply_config': ['mb'],
250 'gclient_config': 'chromium',
251 'chromium_config_kwargs': {
252 'BUILD_CONFIG': 'Debug',
253 'TARGET_PLATFORM': 'win',
254 'TARGET_BITS': 64,
255 },
256 'test_generators': [
257 steps.generate_gtest,
258 steps.generate_script,
259 steps.generate_isolated_script,
260 ],
261 'enable_swarming': True,
262 'testing': {
263 'platform': 'win',
264 },
265 },
266 'Win8 GN (dbg)': { 228 'Win8 GN (dbg)': {
267 'chromium_config': 'chromium', 229 'chromium_config': 'chromium',
268 'chromium_apply_config': ['mb'], 230 'chromium_apply_config': ['mb'],
269 'gclient_config': 'chromium', 231 'gclient_config': 'chromium',
270 'chromium_config_kwargs': { 232 'chromium_config_kwargs': {
271 'BUILD_CONFIG': 'Debug', 233 'BUILD_CONFIG': 'Debug',
272 'TARGET_PLATFORM': 'win', 234 'TARGET_PLATFORM': 'win',
273 'TARGET_BITS': 32, 235 'TARGET_BITS': 32,
274 }, 236 },
275 'test_generators': [ 237 'test_generators': [
(...skipping 24 matching lines...) Expand all
300 'platform': 'win', 262 'platform': 'win',
301 }, 263 },
302 'use_isolate': True, 264 'use_isolate': True,
303 'enable_swarming': True, 265 'enable_swarming': True,
304 # Workaround so that recipes doesn't add random build targets to our 266 # Workaround so that recipes doesn't add random build targets to our
305 # compile line. We want to build everything. 267 # compile line. We want to build everything.
306 'add_tests_as_compile_targets': False, 268 'add_tests_as_compile_targets': False,
307 }, 269 },
308 }, 270 },
309 } 271 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698