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: scripts/slave/recipe_modules/chromium_tests/chromium_win.py

Issue 1892943002: Add a copy of the "WinClang64 (dbg)" bot to the main waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: final slave 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
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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 'test_generators': [ 275 'test_generators': [
276 steps.generate_gtest, 276 steps.generate_gtest,
277 steps.generate_script, 277 steps.generate_script,
278 steps.generate_isolated_script, 278 steps.generate_isolated_script,
279 ], 279 ],
280 'enable_swarming': True, 280 'enable_swarming': True,
281 'testing': { 281 'testing': {
282 'platform': 'win', 282 'platform': 'win',
283 }, 283 },
284 }, 284 },
285 'WinClang': {
Dirk Pranke 2016/04/15 18:26:27 If this is a debug x64 bot, it seems like it would
Nico 2016/04/15 18:28:03 Hm, the reasoning behind the current name is that
286 'chromium_config': 'chromium_win_clang',
287 'chromium_apply_config': ['mb'],
288 'gclient_config': 'chromium',
289 'chromium_config_kwargs': {
290 'BUILD_CONFIG': 'Debug',
291 'TARGET_PLATFORM': 'win',
292 'TARGET_BITS': 64,
293 },
294 'compile_targets': [
295 'all',
296 ],
297 # Recipes builds Debug builds with component=shared_library by default.
298 'bot_type': 'builder',
299 'testing': {
300 'platform': 'win',
301 },
302 'use_isolate': True,
303 'enable_swarming': True,
304 # Workaround so that recipes doesn't add random build targets to our
305 # compile line. We want to build everything.
306 'add_tests_as_compile_targets': False,
307 },
285 }, 308 },
286 } 309 }
OLDNEW
« no previous file with comments | « masters/master.chromium.win/slaves.cfg ('k') | scripts/slave/recipes/chromium.expected/full_chromium_win_WinClang.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698