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 }, | 10 }, |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'recipe_config': 'chromium', | 55 'recipe_config': 'chromium', |
56 'chromium_config_kwargs': { | 56 'chromium_config_kwargs': { |
57 'BUILD_CONFIG': 'Release', | 57 'BUILD_CONFIG': 'Release', |
58 'TARGET_BITS': 32, | 58 'TARGET_BITS': 32, |
59 }, | 59 }, |
60 'bot_type': 'tester', | 60 'bot_type': 'tester', |
61 'disable_runhooks': True, | 61 'disable_runhooks': True, |
62 'test_generators': [ | 62 'test_generators': [ |
63 steps.generate_gtest, | 63 steps.generate_gtest, |
64 ], | 64 ], |
| 65 'tests': [ |
| 66 steps.MojoPythonTests(), |
| 67 steps.TelemetryUnitTests(), |
| 68 steps.TelemetryPerfUnitTests(), |
| 69 ], |
65 'parent_buildername': 'Win Builder', | 70 'parent_buildername': 'Win Builder', |
66 'testing': { | 71 'testing': { |
67 'platform': 'win', | 72 'platform': 'win', |
68 }, | 73 }, |
| 74 'enable_swarming': True, |
69 'swarming_dimensions': { | 75 'swarming_dimensions': { |
70 'os': 'Windows-6.0', | 76 'os': 'Windows-6.0', |
71 }, | 77 }, |
72 }, | 78 }, |
73 'Vista Tests (2)': { | 79 'Vista Tests (2)': { |
74 'recipe_config': 'chromium', | 80 'recipe_config': 'chromium', |
75 'chromium_config_kwargs': { | 81 'chromium_config_kwargs': { |
76 'BUILD_CONFIG': 'Release', | 82 'BUILD_CONFIG': 'Release', |
77 'TARGET_BITS': 32, | 83 'TARGET_BITS': 32, |
78 }, | 84 }, |
79 'bot_type': 'tester', | 85 'bot_type': 'tester', |
80 'disable_runhooks': True, | 86 'disable_runhooks': True, |
81 'test_generators': [ | 87 'test_generators': [ |
82 steps.generate_gtest, | 88 steps.generate_gtest, |
83 ], | 89 ], |
84 'tests': [ | |
85 steps.MojoPythonTests(), | |
86 steps.TelemetryUnitTests(), | |
87 steps.TelemetryPerfUnitTests(), | |
88 ], | |
89 'parent_buildername': 'Win Builder', | 90 'parent_buildername': 'Win Builder', |
90 'testing': { | 91 'testing': { |
91 'platform': 'win', | 92 'platform': 'win', |
92 }, | 93 }, |
93 }, | 94 }, |
94 'Vista Tests (3)': { | 95 'Vista Tests (3)': { |
95 'recipe_config': 'chromium', | 96 'recipe_config': 'chromium', |
96 'chromium_config_kwargs': { | 97 'chromium_config_kwargs': { |
97 'BUILD_CONFIG': 'Release', | 98 'BUILD_CONFIG': 'Release', |
98 'TARGET_BITS': 32, | 99 'TARGET_BITS': 32, |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 'parent_buildername': 'Win Builder (dbg)', | 269 'parent_buildername': 'Win Builder (dbg)', |
269 'testing': { | 270 'testing': { |
270 'platform': 'win', | 271 'platform': 'win', |
271 }, | 272 }, |
272 'swarming_dimensions': { | 273 'swarming_dimensions': { |
273 'os': 'Windows-6.2', | 274 'os': 'Windows-6.2', |
274 }, | 275 }, |
275 }, | 276 }, |
276 }, | 277 }, |
277 } | 278 } |
OLD | NEW |