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

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

Issue 2030713004: Refactor chromium.perf recipe configs. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@2-refactorr
Patch Set: FYI configs. 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_perf_fyi.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py
index e05327dcf36d25e461dce938f82d033e824f5acd..c41eb02980ad157d4716894773213168b77195e3 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py
@@ -18,9 +18,8 @@ def _AddBotSpec(name, platform, parent_builder, perf_id, target_bits,
'TARGET_BITS': target_bits,
},
'parent_buildername': parent_builder,
- 'chromium_config': 'chromium_official',
- 'chromium_apply_config': ['chromium_perf_fyi'],
- 'gclient_config': 'perf',
+ 'chromium_config': 'chromium_perf',
+ 'gclient_config': 'chromium_perf',
'testing': {
'platform': platform,
},
@@ -42,9 +41,8 @@ SPEC = {
'builders': {
'Win x64 FYI Builder': {
'disable_tests': True,
- 'chromium_config': 'chromium_official',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': ['chrome_internal'],
+ 'chromium_config': 'chromium_perf',
+ 'gclient_config': 'chromium_perf',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
@@ -56,13 +54,11 @@ SPEC = {
'testing': {
'platform': 'win',
},
- 'chromium_apply_config': ['chromium_perf_fyi']
},
'Win Clang Builder': {
'disable_tests': True,
'chromium_config': 'chromium_win_clang_official',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': ['chrome_internal'],
+ 'gclient_config': 'chromium_perf',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 32,
@@ -77,7 +73,6 @@ SPEC = {
'tests': {
steps.SizesStep(RESULTS_URL, 'win-clang-builder')
},
- 'chromium_apply_config': ['chromium_perf_fyi'],
},
},
}

Powered by Google App Engine
This is Rietveld 408576698