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

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

Issue 2162343002: tryserver.chromium.linux: convert chromium_trybot builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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-linux-archive', 9 'build_gs_bucket': 'chromium-linux-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 }, 28 },
29 'bot_type': 'builder', 29 'bot_type': 'builder',
30 'compile_targets': [ 30 'compile_targets': [
31 'chromium_swarm_tests', 31 'chromium_swarm_tests',
32 ], 32 ],
33 'testing': { 33 'testing': {
34 'platform': 'linux', 34 'platform': 'linux',
35 }, 35 },
36 'use_isolate': True, 36 'use_isolate': True,
37 'enable_swarming': True, 37 'enable_swarming': True,
38 'checkout_dir': 'linux',
38 }, 39 },
39 'Linux Tests': { 40 'Linux Tests': {
40 'chromium_config': 'chromium', 41 'chromium_config': 'chromium',
41 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 42 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
42 'gclient_config': 'chromium', 43 'gclient_config': 'chromium',
43 'chromium_config_kwargs': { 44 'chromium_config_kwargs': {
44 'BUILD_CONFIG': 'Release', 45 'BUILD_CONFIG': 'Release',
45 'TARGET_BITS': 64, 46 'TARGET_BITS': 64,
46 }, 47 },
47 'bot_type': 'tester', 48 'bot_type': 'tester',
(...skipping 19 matching lines...) Expand all
67 'bot_type': 'builder', 68 'bot_type': 'builder',
68 'compile_targets': [ 69 'compile_targets': [
69 'google_apis_unittests', 70 'google_apis_unittests',
70 'sync_integration_tests', 71 'sync_integration_tests',
71 ], 72 ],
72 'testing': { 73 'testing': {
73 'platform': 'linux', 74 'platform': 'linux',
74 }, 75 },
75 'use_isolate': True, 76 'use_isolate': True,
76 'enable_swarming': True, 77 'enable_swarming': True,
78 'checkout_dir': 'linux',
77 # Temporary hack because the binaries are too large to be isolated. 79 # Temporary hack because the binaries are too large to be isolated.
78 'GYP_DEFINES': { 80 'GYP_DEFINES': {
79 'fastbuild': 2, 81 'fastbuild': 2,
80 }, 82 },
81 }, 83 },
82 'Linux Tests (dbg)(1)(32)': { 84 'Linux Tests (dbg)(1)(32)': {
83 'chromium_config': 'chromium', 85 'chromium_config': 'chromium',
84 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 86 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
85 'gclient_config': 'chromium', 87 'gclient_config': 'chromium',
86 'chromium_config_kwargs': { 88 'chromium_config_kwargs': {
(...skipping 20 matching lines...) Expand all
107 'chromium_config_kwargs': { 109 'chromium_config_kwargs': {
108 'BUILD_CONFIG': 'Debug', 110 'BUILD_CONFIG': 'Debug',
109 'TARGET_BITS': 64, 111 'TARGET_BITS': 64,
110 }, 112 },
111 'bot_type': 'builder', 113 'bot_type': 'builder',
112 'testing': { 114 'testing': {
113 'platform': 'linux', 115 'platform': 'linux',
114 }, 116 },
115 'enable_swarming': True, 117 'enable_swarming': True,
116 'use_isolate': True, 118 'use_isolate': True,
119 'checkout_dir': 'linux',
117 }, 120 },
118 'Linux Tests (dbg)(1)': { 121 'Linux Tests (dbg)(1)': {
119 'chromium_config': 'chromium', 122 'chromium_config': 'chromium',
120 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 123 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
121 'gclient_config': 'chromium', 124 'gclient_config': 'chromium',
122 'chromium_config_kwargs': { 125 'chromium_config_kwargs': {
123 'BUILD_CONFIG': 'Debug', 126 'BUILD_CONFIG': 'Debug',
124 'TARGET_BITS': 64, 127 'TARGET_BITS': 64,
125 }, 128 },
126 'bot_type': 'tester', 129 'bot_type': 'tester',
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 'TARGET_BITS': 32, 316 'TARGET_BITS': 32,
314 'TARGET_PLATFORM': 'android', 317 'TARGET_PLATFORM': 'android',
315 }, 318 },
316 'android_config': 'cast_builder', 319 'android_config': 'cast_builder',
317 'testing': { 320 'testing': {
318 'platform': 'linux', 321 'platform': 'linux',
319 }, 322 },
320 }, 323 },
321 }, 324 },
322 } 325 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698