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

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

Issue 1257683007: Make CrWinClangLLD bot do 32-bit builds, add a CrWinClangLLD64 bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: . Created 5 years, 5 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_fyi.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py
index 459909708c83de0eed228f28067c301834176de7..e200994895f6f7a757e9c0f02c2cf5d93dbf931a 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py
@@ -574,7 +574,7 @@ SPEC = {
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
+ 'TARGET_BITS': 32,
},
'GYP_DEFINES': { 'component': 'shared_library', 'use_lld': 1 },
'bot_type': 'builder',
@@ -592,7 +592,7 @@ SPEC = {
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
+ 'TARGET_BITS': 32,
},
'test_generators': [
steps.generate_gtest,
@@ -604,6 +604,41 @@ SPEC = {
},
'enable_swarming': True,
},
+ 'CrWinClangLLD64': {
+ 'chromium_config': 'chromium_win_clang_tot',
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'GYP_DEFINES': { 'component': 'shared_library', 'use_lld': 1 },
+ 'bot_type': 'builder',
+ 'testing': {
+ 'platform': 'win',
+ },
+ 'use_isolate': True,
+ 'enable_swarming': True,
+ # Workaround so that recipes doesn't add random build targets to our
+ # compile line. We want to build everything.
+ 'add_tests_as_compile_targets': False,
+ },
+ 'CrWinClangLLD64 tester': {
+ 'chromium_config': 'chromium_no_goma',
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'test_generators': [
+ steps.generate_gtest,
+ ],
+ 'bot_type': 'tester',
+ 'parent_buildername': 'CrWinClangLLD64',
+ 'testing': {
+ 'platform': 'win',
+ },
+ 'enable_swarming': True,
+ },
'CrWinAsan': {
'chromium_config': 'chromium_win_clang_asan_tot',
'gclient_config': 'chromium',
« no previous file with comments | « masters/master.chromium.fyi/slaves.cfg ('k') | scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClangLLD.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698