| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 ], | 71 ], |
| 72 'parent_buildername': 'Win Builder', | 72 'parent_buildername': 'Win Builder', |
| 73 'testing': { | 73 'testing': { |
| 74 'platform': 'win', | 74 'platform': 'win', |
| 75 }, | 75 }, |
| 76 'enable_swarming': True, | 76 'enable_swarming': True, |
| 77 'swarming_dimensions': { | 77 'swarming_dimensions': { |
| 78 'os': 'Windows-Vista-SP2', | 78 'os': 'Windows-Vista-SP2', |
| 79 }, | 79 }, |
| 80 }, | 80 }, |
| 81 'Win7 (32) Tests': { |
| 82 'chromium_config': 'chromium', |
| 83 'chromium_apply_config': ['ninja_confirm_noop'], |
| 84 'gclient_config': 'chromium', |
| 85 'chromium_config_kwargs': { |
| 86 'BUILD_CONFIG': 'Release', |
| 87 'TARGET_BITS': 32, |
| 88 }, |
| 89 'bot_type': 'tester', |
| 90 'test_generators': [ |
| 91 steps.generate_gtest, |
| 92 steps.generate_script, |
| 93 steps.generate_isolated_script, |
| 94 ], |
| 95 'parent_buildername': 'Win Builder', |
| 96 'testing': { |
| 97 'platform': 'win', |
| 98 }, |
| 99 'enable_swarming': True, |
| 100 'swarming_dimensions': { |
| 101 'cpu': 'x86-32', |
| 102 'os': 'Windows-7-SP1', |
| 103 }, |
| 104 }, |
| 81 'Win7 Tests (1)': { | 105 'Win7 Tests (1)': { |
| 82 'chromium_config': 'chromium', | 106 'chromium_config': 'chromium', |
| 83 'chromium_apply_config': ['ninja_confirm_noop'], | 107 'chromium_apply_config': ['ninja_confirm_noop'], |
| 84 'gclient_config': 'chromium', | 108 'gclient_config': 'chromium', |
| 85 'chromium_config_kwargs': { | 109 'chromium_config_kwargs': { |
| 86 'BUILD_CONFIG': 'Release', | 110 'BUILD_CONFIG': 'Release', |
| 87 'TARGET_BITS': 32, | 111 'TARGET_BITS': 32, |
| 88 }, | 112 }, |
| 89 'bot_type': 'tester', | 113 'bot_type': 'tester', |
| 90 'test_generators': [ | 114 'test_generators': [ |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 steps.generate_script, | 292 steps.generate_script, |
| 269 steps.generate_isolated_script, | 293 steps.generate_isolated_script, |
| 270 ], | 294 ], |
| 271 'enable_swarming': True, | 295 'enable_swarming': True, |
| 272 'testing': { | 296 'testing': { |
| 273 'platform': 'win', | 297 'platform': 'win', |
| 274 }, | 298 }, |
| 275 }, | 299 }, |
| 276 }, | 300 }, |
| 277 } | 301 } |
| OLD | NEW |