OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |