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-linux-archive', | 9 'build_gs_bucket': 'chromium-linux-archive', |
10 }, | 10 }, |
11 'builders': { | 11 'builders': { |
12 'Linux Builder': { | 12 'Linux Builder': { |
13 'recipe_config': 'chromium', | 13 'recipe_config': 'chromium', |
14 'chromium_config_kwargs': { | 14 'chromium_config_kwargs': { |
15 'BUILD_CONFIG': 'Release', | 15 'BUILD_CONFIG': 'Release', |
16 'TARGET_BITS': 64, | 16 'TARGET_BITS': 64, |
17 }, | 17 }, |
18 'bot_type': 'builder', | 18 'bot_type': 'builder', |
19 'compile_targets': [ | 19 'compile_targets': [ |
20 'chromium_swarm_tests', | 20 'chromium_swarm_tests', |
21 ], | 21 ], |
22 'testing': { | 22 'testing': { |
23 'platform': 'linux', | 23 'platform': 'linux', |
24 }, | 24 }, |
| 25 'use_isolate': True, |
| 26 'enable_swarming': True, |
25 }, | 27 }, |
26 'Linux Tests': { | 28 'Linux Tests': { |
27 'recipe_config': 'chromium', | 29 'recipe_config': 'chromium', |
28 'chromium_config_kwargs': { | 30 'chromium_config_kwargs': { |
29 'BUILD_CONFIG': 'Release', | 31 'BUILD_CONFIG': 'Release', |
30 'TARGET_BITS': 64, | 32 'TARGET_BITS': 64, |
31 }, | 33 }, |
32 'bot_type': 'tester', | 34 'bot_type': 'tester', |
33 'test_generators': [ | 35 'test_generators': [ |
34 steps.generate_gtest, | 36 steps.generate_gtest, |
35 ], | 37 ], |
36 'tests': [ | 38 'tests': [ |
37 steps.MojoPythonTests(), | 39 steps.MojoPythonTests(), |
38 steps.MojoPythonBindingsTests(), | 40 steps.MojoPythonBindingsTests(), |
39 steps.TelemetryUnitTests(), | 41 steps.TelemetryUnitTests(), |
40 steps.TelemetryPerfUnitTests(), | 42 steps.TelemetryPerfUnitTests(), |
41 ], | 43 ], |
42 'parent_buildername': 'Linux Builder', | 44 'parent_buildername': 'Linux Builder', |
43 'testing': { | 45 'testing': { |
44 'platform': 'linux', | 46 'platform': 'linux', |
45 }, | 47 }, |
| 48 'enable_swarming': True, |
46 }, | 49 }, |
47 'Linux Builder (dbg)(32)': { | 50 'Linux Builder (dbg)(32)': { |
48 'recipe_config': 'chromium', | 51 'recipe_config': 'chromium', |
49 'chromium_config_kwargs': { | 52 'chromium_config_kwargs': { |
50 'BUILD_CONFIG': 'Debug', | 53 'BUILD_CONFIG': 'Debug', |
51 'TARGET_BITS': 32, | 54 'TARGET_BITS': 32, |
52 }, | 55 }, |
53 'bot_type': 'builder', | 56 'bot_type': 'builder', |
54 'compile_targets': [ | 57 'compile_targets': [ |
55 'google_apis_unittests', | 58 'google_apis_unittests', |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 test_data='content:content/test/data/android/device_files', | 256 test_data='content:content/test/data/android/device_files', |
254 adb_install_apk=( | 257 adb_install_apk=( |
255 'ContentShell.apk', 'org.chromium.content_shell_apk')), | 258 'ContentShell.apk', 'org.chromium.content_shell_apk')), |
256 ], | 259 ], |
257 'testing': { | 260 'testing': { |
258 'platform': 'linux', | 261 'platform': 'linux', |
259 }, | 262 }, |
260 }, | 263 }, |
261 }, | 264 }, |
262 } | 265 } |
OLD | NEW |