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

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

Issue 2055503003: lkgr: Convert mac asan bots to recipes/ (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: 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 3b7d710d28fb55759228556971f2a023bcd45f46..23fb3716045d01668ee8c3af1df461197761af9a 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py
@@ -76,6 +76,60 @@ SPEC = {
'compile_targets': [ 'chromium_builder_asan' ],
'testing': { 'platform': 'win' },
},
+ 'Mac ASAN Release': {
+ 'chromium_config': 'chromium_mac_asan',
+ 'chromium_apply_config': ['mb', 'clobber', 'v8_verify_heap',
+ 'enable_ipc_fuzzer'],
+ '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': 'mac' },
+ },
+ 'Mac ASAN Release Media': {
+ 'chromium_config': 'chromium_mac_asan',
+ 'chromium_apply_config': ['mb', 'clobber', 'v8_verify_heap',
+ 'enable_ipc_fuzzer', 'chrome_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': 'mac' },
+ },
+ 'Mac ASAN Debug': {
+ 'chromium_config': 'chromium_mac_asan',
+ 'chromium_apply_config': ['mb', 'clobber', 'v8_verify_heap',
+ 'enable_ipc_fuzzer'],
+ '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': 'mac' },
+ },
# 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