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

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

Issue 2045253008: Move CFI Linux CF bot to a real recipe (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: less 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 9
10 KITCHEN_TEST_SPEC = { 10 KITCHEN_TEST_SPEC = {
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 steps.generate_script, 353 steps.generate_script,
354 steps.generate_isolated_script, 354 steps.generate_isolated_script,
355 ], 355 ],
356 'bot_type': 'builder_tester', 356 'bot_type': 'builder_tester',
357 'testing': { 357 'testing': {
358 'platform': 'linux', 358 'platform': 'linux',
359 }, 359 },
360 }, 360 },
361 'CFI Linux CF': { 361 'CFI Linux CF': {
362 'chromium_config': 'chromium_cfi', 362 'chromium_config': 'chromium_cfi',
363 'chromium_apply_config': ['mb'], 363 'chromium_apply_config': ['mb', 'clobber'],
364 'gclient_config': 'chromium', 364 'gclient_config': 'chromium',
365 'chromium_config_kwargs': { 365 'chromium_config_kwargs': {
366 'BUILD_CONFIG': 'Release', 366 'BUILD_CONFIG': 'Release',
367 'TARGET_BITS': 64, 367 'TARGET_BITS': 64,
368 }, 368 },
369 'bot_type': 'builder', 369 'bot_type': 'builder',
370 'testing': { 370 'compile_targets': [ 'chromium_builder_asan' ],
371 'platform': 'linux', 371 'cf_archive_build': True,
372 }, 372 'cf_gs_bucket': 'chromium-browser-cfi',
373 'cf_gs_acl': 'public-read',
374 'cf_archive_name': 'cfi',
375 'testing': { 'platform': 'linux' },
373 }, 376 },
374 'LTO Linux': { 377 'LTO Linux': {
375 'chromium_config': 'chromium_official', 378 'chromium_config': 'chromium_official',
376 'chromium_apply_config': ['mb'], 379 'chromium_apply_config': ['mb'],
377 'gclient_config': 'chromium', 380 'gclient_config': 'chromium',
378 'gclient_apply_config': ['chrome_internal'], 381 'gclient_apply_config': ['chrome_internal'],
379 'chromium_config_kwargs': { 382 'chromium_config_kwargs': {
380 'BUILD_CONFIG': 'Release', 383 'BUILD_CONFIG': 'Release',
381 'TARGET_BITS': 64, 384 'TARGET_BITS': 64,
382 }, 385 },
(...skipping 1785 matching lines...) Expand 10 before | Expand all | Expand 10 after
2168 'enable_swarming': True, 2171 'enable_swarming': True,
2169 'testing': { 2172 'testing': {
2170 'platform': 'win', 2173 'platform': 'win',
2171 }, 2174 },
2172 }, 2175 },
2173 2176
2174 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, 2177 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC,
2175 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, 2178 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC,
2176 }, 2179 },
2177 } 2180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698