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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.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/tryserver_chromium_perf.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py b/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
index c456d9418f172f98abb6d4c591eb88481bbce77c..f6a2d3e3381d9ac701c5558091382b204b1f9941 100644
--- a/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
+++ b/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
@@ -12,13 +12,15 @@ SPEC = {
def _AddBuildSpec(name, platform, target_bits=64):
- SPEC['builders'][name] = chromium_perf.BuildSpec(None, platform, target_bits)
+ SPEC['builders'][name] = chromium_perf.BuildSpec(
+ 'tryserver_chromium_perf', None, platform, target_bits)
def _AddTestSpec(name, platform, target_bits=64):
# TODO(dtu): Change this to TestSpec after try job builds are all offloaded
# to builders.
- spec = chromium_perf.BuildSpec(None, platform, target_bits)
+ spec = chromium_perf.BuildSpec(
+ 'tryserver_chromium_perf', None, platform, target_bits)
del spec['tests']
SPEC['builders'][name] = spec

Powered by Google App Engine
This is Rietveld 408576698