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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py

Issue 2318413002: Re-add perf-id and results-url. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from . import chromium_perf 5 from . import chromium_perf
6 6
7 import DEPS 7 import DEPS
8 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX 8 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX
9 GCLIENT_CONFIG_CTX = DEPS['gclient'].CONFIG_CTX 9 GCLIENT_CONFIG_CTX = DEPS['gclient'].CONFIG_CTX
10 10
(...skipping 20 matching lines...) Expand all
31 31
32 32
33 def _AddBuildSpec(name, platform, target_bits=64): 33 def _AddBuildSpec(name, platform, target_bits=64):
34 # We run sizes with no perf_id for perf tryjobs. http://crbug.com/610772 34 # We run sizes with no perf_id for perf tryjobs. http://crbug.com/610772
35 SPEC['builders'][name] = chromium_perf.BuildSpec( 35 SPEC['builders'][name] = chromium_perf.BuildSpec(
36 'tryserver_chromium_perf', None, platform, target_bits) 36 'tryserver_chromium_perf', None, platform, target_bits)
37 37
38 38
39 def _AddTestSpec(name, platform, target_bits=64): 39 def _AddTestSpec(name, platform, target_bits=64):
40 SPEC['builders'][name] = chromium_perf.TestSpec( 40 SPEC['builders'][name] = chromium_perf.TestSpec(
41 'tryserver_chromium_perf', platform, target_bits) 41 'tryserver_chromium_perf', None, platform, target_bits)
42 42
43 43
44 _AddBuildSpec('win_perf_bisect_builder', 'win', target_bits=32) 44 _AddBuildSpec('win_perf_bisect_builder', 'win', target_bits=32)
45 _AddBuildSpec('winx64_bisect_builder', 'win') 45 _AddBuildSpec('winx64_bisect_builder', 'win')
46 _AddBuildSpec('mac_perf_bisect_builder', 'mac') 46 _AddBuildSpec('mac_perf_bisect_builder', 'mac')
47 _AddBuildSpec('linux_perf_bisect_builder', 'linux') 47 _AddBuildSpec('linux_perf_bisect_builder', 'linux')
48 48
49 49
50 _AddTestSpec('winx64_10_perf_cq', 'win') 50 _AddTestSpec('winx64_10_perf_cq', 'win')
51 _AddTestSpec('mac_retina_perf_cq', 'mac') 51 _AddTestSpec('mac_retina_perf_cq', 'mac')
(...skipping 14 matching lines...) Expand all
66 _AddTestSpec('winx64ati_perf_bisect', 'win') 66 _AddTestSpec('winx64ati_perf_bisect', 'win')
67 _AddTestSpec('winx64intel_perf_bisect', 'win') 67 _AddTestSpec('winx64intel_perf_bisect', 'win')
68 _AddTestSpec('winx64nvidia_perf_bisect', 'win') 68 _AddTestSpec('winx64nvidia_perf_bisect', 'win')
69 69
70 _AddTestSpec('mac_10_11_perf_bisect', 'mac') 70 _AddTestSpec('mac_10_11_perf_bisect', 'mac')
71 _AddTestSpec('mac_10_10_perf_bisect', 'mac') 71 _AddTestSpec('mac_10_10_perf_bisect', 'mac')
72 _AddTestSpec('mac_retina_perf_bisect', 'mac') 72 _AddTestSpec('mac_retina_perf_bisect', 'mac')
73 _AddTestSpec('mac_hdd_perf_bisect', 'mac') 73 _AddTestSpec('mac_hdd_perf_bisect', 'mac')
74 74
75 _AddTestSpec('linux_perf_bisect', 'linux') 75 _AddTestSpec('linux_perf_bisect', 'linux')
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py ('k') | scripts/slave/recipes/bisect.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698