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

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

Issue 2051583002: lkgr master: Port linux ubsan 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 db9138e1920333757d97679ea05654d7428228a2..3d84ed7661405984d7b6955e920b8c20c6a22489 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py
@@ -22,12 +22,45 @@ SPEC = {
'cf_gs_bucket': 'chromium-browser-syzyasan',
'cf_gs_acl': 'public-read',
'cf_archive_name': 'asan',
- 'compile_targets': [
- 'chromium_builder_asan',
- ],
- 'testing': {
- 'platform': 'win',
+ 'compile_targets': [ 'chromium_builder_asan' ],
+ 'testing': { 'platform': 'win' },
+ },
+ 'UBSan Release': {
+ 'chromium_config': 'chromium_linux_ubsan',
+ 'chromium_apply_config': ['mb'],
+ '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-ubsan',
+ 'cf_gs_acl': 'public-read',
+ 'cf_archive_name': 'ubsan',
+ 'compile_targets': [ 'chromium_builder_asan' ],
+ 'testing': { 'platform': 'linux' },
+ },
+ # The build process for UBSan vptr is described at
+ # http://dev.chromium.org/developers/testing/undefinedbehaviorsanitizer
+ 'UBSan vptr Release': {
+ 'chromium_config': 'chromium_linux_ubsan_vptr',
+ 'chromium_apply_config': ['mb'],
+ '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-ubsan',
+ 'cf_gs_acl': 'public-read',
+ 'cf_archive_name': 'ubsan-vptr',
+ 'cf_archive_subdir_suffix': 'vptr',
+ 'compile_targets': [ 'chromium_builder_asan' ],
+ 'testing': { 'platform': 'linux' },
},
},
}

Powered by Google App Engine
This is Rietveld 408576698