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

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

Issue 1830323005: Windows 10 64-bit try server configuration. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: fixes 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 17 matching lines...) Expand all
28 'bot_type': 'builder', 28 'bot_type': 'builder',
29 'compile_targets': [ 29 'compile_targets': [
30 'chromium_builder_tests', 30 'chromium_builder_tests',
31 ], 31 ],
32 'testing': { 32 'testing': {
33 'platform': 'win', 33 'platform': 'win',
34 }, 34 },
35 'enable_swarming': True, 35 'enable_swarming': True,
36 'use_isolate': True, 36 'use_isolate': True,
37 }, 37 },
38 'Win10 Tests x64': {
39 'chromium_config': 'chromium',
40 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
41 'gclient_config': 'chromium',
42 'chromium_config_kwargs': {
43 'BUILD_CONFIG': 'Release',
44 'TARGET_BITS': 64,
45 },
46 'bot_type': 'tester',
47 'test_generators': [
48 steps.generate_gtest,
49 steps.generate_script,
50 steps.generate_isolated_script,
51 ],
52 'tests': [
53 steps.MiniInstallerTest(),
54 ],
55 'parent_buildername': 'Win x64 Builder',
56 'testing': {
57 'platform': 'win',
58 },
59 'enable_swarming': True,
60 'swarming_dimensions': {
61 'cpu': 'x86-64',
62 'os': 'Windows-10-10240',
63 },
64 },
38 'Win7 (32) Tests': { 65 'Win7 (32) Tests': {
39 'chromium_config': 'chromium', 66 'chromium_config': 'chromium',
40 'chromium_apply_config': ['ninja_confirm_noop'], 67 'chromium_apply_config': ['ninja_confirm_noop'],
41 'gclient_config': 'chromium', 68 'gclient_config': 'chromium',
42 'chromium_config_kwargs': { 69 'chromium_config_kwargs': {
43 'BUILD_CONFIG': 'Release', 70 'BUILD_CONFIG': 'Release',
44 'TARGET_BITS': 32, 71 'TARGET_BITS': 32,
45 }, 72 },
46 'bot_type': 'tester', 73 'bot_type': 'tester',
47 'test_generators': [ 74 'test_generators': [
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 steps.generate_script, 276 steps.generate_script,
250 steps.generate_isolated_script, 277 steps.generate_isolated_script,
251 ], 278 ],
252 'enable_swarming': True, 279 'enable_swarming': True,
253 'testing': { 280 'testing': {
254 'platform': 'win', 281 'platform': 'win',
255 }, 282 },
256 }, 283 },
257 }, 284 },
258 } 285 }
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py ('k') | scripts/slave/recipe_modules/chromium_tests/trybots.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698