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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py

Issue 2042283005: lkgr: Convert some linux asan bots to recipes/ (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: merge https://codereview.chromium.org/2047323003/ 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py b/scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py
index 23fb3716045d01668ee8c3af1df461197761af9a..7cb10933ed1df2b3c52c93be1d2f7e498109dbff 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py
@@ -130,6 +130,60 @@ SPEC = {
'compile_targets': [ 'chromium_builder_asan' ],
'testing': { 'platform': 'mac' },
},
+ 'ASAN Release': {
+ 'chromium_config': 'chromium_linux_asan',
+ 'chromium_apply_config': ['mb', 'clobber', 'v8_verify_heap',
+ 'enable_ipc_fuzzer', 'sanitizer_coverage'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'disable_tests': True,
+ 'cf_archive_build': True,
+ 'cf_gs_bucket': 'chromium-browser-asan',
+ 'cf_gs_acl': 'public-read',
+ 'cf_archive_name': 'asan',
+ 'compile_targets': [ 'chromium_builder_asan' ],
+ 'testing': { 'platform': 'linux' },
+ },
+ 'ASAN Release Media': {
+ 'chromium_config': 'chromium_linux_asan',
+ 'chromium_apply_config': ['mb', 'clobber', 'v8_verify_heap',
+ 'enable_ipc_fuzzer', 'sanitizer_coverage',
+ 'chromeos_with_codecs'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'disable_tests': True,
+ 'cf_archive_build': True,
+ 'cf_gs_bucket': 'chrome-test-builds/media',
+ 'cf_gs_acl': 'public-read',
+ 'cf_archive_name': 'asan',
+ 'compile_targets': [ 'chromium_builder_asan' ],
+ 'testing': { 'platform': 'linux' },
+ },
+ 'ASAN Debug': {
+ 'chromium_config': 'chromium_linux_asan',
+ 'chromium_apply_config': ['mb', 'clobber', 'sanitizer_coverage'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'disable_tests': True,
+ 'cf_archive_build': True,
+ 'cf_gs_bucket': 'chromium-browser-asan',
+ 'cf_gs_acl': 'public-read',
+ 'cf_archive_name': 'asan',
+ 'compile_targets': [ 'chromium_builder_asan' ],
+ 'testing': { 'platform': 'linux' },
+ },
# The build process for TSan is described at
# http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2
'TSAN Release': {

Powered by Google App Engine
This is Rietveld 408576698