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

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

Issue 2055833002: Convert the last 4 remaining bots on the LKGR waterfall to recipes (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: ChromiumFactory be gone Created 4 years, 6 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 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 SPEC = { 9 SPEC = {
10 'builders': { 10 'builders': {
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 }, 177 },
178 'bot_type': 'builder', 178 'bot_type': 'builder',
179 'disable_tests': True, 179 'disable_tests': True,
180 'cf_archive_build': True, 180 'cf_archive_build': True,
181 'cf_gs_bucket': 'chromium-browser-asan', 181 'cf_gs_bucket': 'chromium-browser-asan',
182 'cf_gs_acl': 'public-read', 182 'cf_gs_acl': 'public-read',
183 'cf_archive_name': 'asan', 183 'cf_archive_name': 'asan',
184 'compile_targets': [ 'chromium_builder_asan' ], 184 'compile_targets': [ 'chromium_builder_asan' ],
185 'testing': { 'platform': 'linux' }, 185 'testing': { 'platform': 'linux' },
186 }, 186 },
187 'ChromiumOS ASAN Release': {
188 'chromium_config': 'chromium_linux_asan',
189 'chromium_apply_config': ['mb', 'clobber', 'v8_verify_heap',
190 'enable_ipc_fuzzer', 'sanitizer_coverage',
191 'chromiumos'],
192 'gclient_config': 'chromium',
193 'chromium_config_kwargs': {
194 'BUILD_CONFIG': 'Release',
195 'TARGET_BITS': 64,
196 },
197 'bot_type': 'builder',
198 'disable_tests': True,
199 'cf_archive_build': True,
200 'cf_gs_bucket': 'chromium-browser-asan',
201 'cf_gs_acl': 'public-read',
202 'cf_archive_name': 'asan',
203 'cf_archive_subdir_suffix': 'chromeos',
204 'compile_targets': [ 'chromium_builder_asan' ],
205 'testing': { 'platform': 'linux' },
206 },
207 # The build process is described at
208 # https://sites.google.com/a/chromium.org/dev/developers/testing/addresssani tizer#TOC-Building-with-v8_target_arch-arm
209 'ASan Debug (32-bit x86 with V8-ARM)': {
210 'chromium_config': 'chromium_linux_asan',
211 'chromium_apply_config': ['mb', 'clobber', 'sanitizer_coverage',
212 'v8_hybrid_arm', 'v8_verify_heap',
213 'static_library'],
214 'gclient_config': 'chromium',
215 'chromium_config_kwargs': {
216 'BUILD_CONFIG': 'Debug',
217 'TARGET_BITS': 32,
218 },
219 'bot_type': 'builder',
220 'disable_tests': True,
221 'cf_archive_build': True,
222 'cf_gs_bucket': 'chromium-browser-asan',
223 'cf_gs_acl': 'public-read',
224 'cf_archive_name': 'asan-v8-arm',
225 'cf_archive_subdir_suffix': 'v8-arm',
226 'compile_targets': [ 'chromium_builder_asan' ],
227 'testing': { 'platform': 'linux' },
228 },
229 'ASan Release (32-bit x86 with V8-ARM)': {
230 'chromium_config': 'chromium_linux_asan',
231 'chromium_apply_config': ['mb', 'clobber', 'sanitizer_coverage',
232 'v8_hybrid_arm', 'v8_verify_heap',
233 'enable_ipc_fuzzer'],
234 'gclient_config': 'chromium',
235 'chromium_config_kwargs': {
236 'BUILD_CONFIG': 'Release',
237 'TARGET_BITS': 32,
238 },
239 'bot_type': 'builder',
240 'disable_tests': True,
241 'cf_archive_build': True,
242 'cf_gs_bucket': 'chromium-browser-asan',
243 'cf_gs_acl': 'public-read',
244 'cf_archive_name': 'asan-v8-arm',
245 'cf_archive_subdir_suffix': 'v8-arm',
246 'compile_targets': [ 'chromium_builder_asan' ],
247 'testing': { 'platform': 'linux' },
248 },
249 'ASan Release Media (32-bit x86 with V8-ARM)': {
250 'chromium_config': 'chromium_linux_asan',
251 'chromium_apply_config': ['mb', 'clobber', 'sanitizer_coverage',
252 'v8_hybrid_arm', 'v8_verify_heap',
253 'enable_ipc_fuzzer', 'chromeos_with_codecs'],
254 'gclient_config': 'chromium',
255 'chromium_config_kwargs': {
256 'BUILD_CONFIG': 'Release',
257 'TARGET_BITS': 32,
258 },
259 'bot_type': 'builder',
260 'disable_tests': True,
261 'cf_archive_build': True,
262 'cf_gs_bucket': 'chrome-test-builds/media',
263 'cf_gs_acl': 'public-read',
264 'cf_archive_name': 'asan-v8-arm',
265 'cf_archive_subdir_suffix': 'v8-arm',
266 'compile_targets': [ 'chromium_builder_asan' ],
267 'testing': { 'platform': 'linux' },
268 },
187 # The build process for TSan is described at 269 # The build process for TSan is described at
188 # http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 270 # http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2
189 'TSAN Release': { 271 'TSAN Release': {
190 'chromium_config': 'chromium_clang', 272 'chromium_config': 'chromium_clang',
191 'chromium_apply_config': ['mb', 'tsan2', 'clobber'], 273 'chromium_apply_config': ['mb', 'tsan2', 'clobber'],
192 'gclient_config': 'chromium', 274 'gclient_config': 'chromium',
193 'chromium_config_kwargs': { 275 'chromium_config_kwargs': {
194 'BUILD_CONFIG': 'Release', 276 'BUILD_CONFIG': 'Release',
195 'TARGET_BITS': 64, 277 'TARGET_BITS': 64,
196 }, 278 },
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 'cf_archive_build': True, 374 'cf_archive_build': True,
293 'cf_gs_bucket': 'chromium-browser-ubsan', 375 'cf_gs_bucket': 'chromium-browser-ubsan',
294 'cf_gs_acl': 'public-read', 376 'cf_gs_acl': 'public-read',
295 'cf_archive_name': 'ubsan-vptr', 377 'cf_archive_name': 'ubsan-vptr',
296 'cf_archive_subdir_suffix': 'vptr', 378 'cf_archive_subdir_suffix': 'vptr',
297 'compile_targets': [ 'chromium_builder_asan' ], 379 'compile_targets': [ 'chromium_builder_asan' ],
298 'testing': { 'platform': 'linux' }, 380 'testing': { 'platform': 'linux' },
299 }, 381 },
300 }, 382 },
301 } 383 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698