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

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

Issue 541233003: Add Linux and Win site isolation builder_testers to chromium.fyi waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@propagate_args
Patch Set: Fixed unittests. Created 6 years, 3 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/chromium_fyi.py
diff --git a/scripts/slave/recipe_modules/chromium/chromium_fyi.py b/scripts/slave/recipe_modules/chromium/chromium_fyi.py
index 89aa6489d177512e1b521e88a994c610389ad6b0..6aa41bdff75352594c5232eac235784819bf0cf3 100644
--- a/scripts/slave/recipe_modules/chromium/chromium_fyi.py
+++ b/scripts/slave/recipe_modules/chromium/chromium_fyi.py
@@ -244,5 +244,42 @@ SPEC = {
'platform': 'mac',
},
},
+ 'Site Isolation Linux': {
+ 'recipe_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder_tester',
+ 'compile_targets': [
+ 'content_unittests',
+ 'content_browsertests',
+ ],
+ 'test_generators': [
+ steps.generate_gtest,
+ ],
+ 'testing': {
+ 'platform': 'linux',
+ },
+ },
+ 'Site Isolation Win': {
+ 'recipe_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_PLATFORM': 'win',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder_tester',
+ 'compile_targets': [
+ 'content_unittests',
+ 'content_browsertests',
+ ],
+ 'test_generators': [
+ steps.generate_gtest,
+ ],
+ 'testing': {
+ 'platform': 'win',
+ },
+ },
},
}

Powered by Google App Engine
This is Rietveld 408576698