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

Side by Side Diff: scripts/slave/recipes/chromium_trybot.py

Issue 691293002: Chromium-for-ChromiumOS/Linux compile-only trybots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebased. Created 6 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 DEPS = [ 5 DEPS = [
6 'bot_update', 6 'bot_update',
7 'chromium', 7 'chromium',
8 'chromium_tests', 8 'chromium_tests',
9 'gclient', 9 'gclient',
10 'isolate', 10 'isolate',
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 'chromium_config_kwargs': { 145 'chromium_config_kwargs': {
146 'BUILD_CONFIG': 'Debug', 146 'BUILD_CONFIG': 'Debug',
147 'TARGET_BITS': 64, 147 'TARGET_BITS': 64,
148 }, 148 },
149 'chromium_config': 'chromium_chromeos', 149 'chromium_config': 'chromium_chromeos',
150 'compile_only': False, 150 'compile_only': False,
151 'testing': { 151 'testing': {
152 'platform': 'linux', 152 'platform': 'linux',
153 }, 153 },
154 }, 154 },
155 'linux_chromium_chromeos_compile_dbg_ng': {
156 'add_telemetry_tests': False,
157 'based_on_main_waterfall': {
158 'mastername': 'chromium.chromiumos',
159 'buildername': 'Linux ChromiumOS Builder (dbg)',
160 'testers': [],
161 },
162 'compile_only': True,
163 'testing': {
164 'platform': 'linux',
165 },
166 },
155 'linux_chromium_chromeos_rel': { 167 'linux_chromium_chromeos_rel': {
156 'add_telemetry_tests': False, 168 'add_telemetry_tests': False,
157 'chromium_config_kwargs': { 169 'chromium_config_kwargs': {
158 'BUILD_CONFIG': 'Release', 170 'BUILD_CONFIG': 'Release',
159 'TARGET_BITS': 64, 171 'TARGET_BITS': 64,
160 }, 172 },
161 'enable_swarming': True, 173 'enable_swarming': True,
162 'chromium_config': 'chromium_chromeos', 174 'chromium_config': 'chromium_chromeos',
163 'compile_only': False, 175 'compile_only': False,
164 'testing': { 176 'testing': {
165 'platform': 'linux', 177 'platform': 'linux',
166 }, 178 },
167 }, 179 },
180 'linux_chromium_chromeos_compile_rel_ng': {
181 'add_telemetry_tests': False,
182 'based_on_main_waterfall': {
183 'mastername': 'chromium.chromiumos',
184 'buildername': 'Linux ChromiumOS Builder',
185 'testers': [],
186 },
187 'compile_only': True,
188 'testing': {
189 'platform': 'linux',
190 },
191 },
168 'linux_chromium_chromeos_ozone_rel': { 192 'linux_chromium_chromeos_ozone_rel': {
169 'add_telemetry_tests': False, 193 'add_telemetry_tests': False,
170 'chromium_config_kwargs': { 194 'chromium_config_kwargs': {
171 'BUILD_CONFIG': 'Release', 195 'BUILD_CONFIG': 'Release',
172 'TARGET_BITS': 64, 196 'TARGET_BITS': 64,
173 }, 197 },
174 'chromium_config': 'chromium_chromeos_ozone', 198 'chromium_config': 'chromium_chromeos_ozone',
175 'compile_only': False, 199 'compile_only': False,
176 'testing': { 200 'testing': {
177 'platform': 'linux', 201 'platform': 'linux',
(...skipping 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after
1511 'test': 'base_tests', 1535 'test': 'base_tests',
1512 'args': ['--gtest-filter: *NaCl*.*'], 1536 'args': ['--gtest-filter: *NaCl*.*'],
1513 }, 1537 },
1514 ], 1538 ],
1515 }) 1539 })
1516 ) + 1540 ) +
1517 api.override_step_data( 1541 api.override_step_data(
1518 'analyze', 1542 'analyze',
1519 api.json.output({'invalid_targets': 'invalid target'})) 1543 api.json.output({'invalid_targets': 'invalid target'}))
1520 ) 1544 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698