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

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

Issue 1929613003: Remove unused builders from tryserver.chromium.perf recipes. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « no previous file | scripts/slave/recipes/bisect.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5
6 from . import chromium_perf 6 from . import chromium_perf
7 from . import steps 7 from . import steps
8 8
9 9
10 SPEC = { 10 SPEC = {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'mac_10_10_perf_bisect': 50 'mac_10_10_perf_bisect':
51 chromium_perf.SPEC['builders']['Mac Builder'], 51 chromium_perf.SPEC['builders']['Mac Builder'],
52 'mac_retina_perf_bisect': 52 'mac_retina_perf_bisect':
53 chromium_perf.SPEC['builders']['Mac Builder'], 53 chromium_perf.SPEC['builders']['Mac Builder'],
54 'mac_hdd_perf_bisect': 54 'mac_hdd_perf_bisect':
55 chromium_perf.SPEC['builders']['Mac Builder'], 55 chromium_perf.SPEC['builders']['Mac Builder'],
56 'mac_retina_perf_cq': 56 'mac_retina_perf_cq':
57 chromium_perf.SPEC['builders']['Mac Builder'], 57 chromium_perf.SPEC['builders']['Mac Builder'],
58 'mac_fyi_perf_bisect': 58 'mac_fyi_perf_bisect':
59 chromium_perf.SPEC['builders']['Mac Builder'], 59 chromium_perf.SPEC['builders']['Mac Builder'],
60 'linux_perf_tester':{
61 'chromium_config': 'chromium_official',
62 'gclient_config': 'chromium',
63 'gclient_apply_config': ['chrome_internal'],
64 'parent_buildername': 'Linux Builder',
65 'chromium_config_kwargs': {
66 'BUILD_CONFIG': 'Release',
67 'TARGET_BITS': 64,
68 },
69 'bot_type': 'tester',
70 'compile_targets': [
71 'chromium_builder_perf',
72 ],
73 'testing': {
74 'platform': 'linux',
75 },
76 'tests':[steps.BisectTest()],
77 'chromium_apply_config': ['chromium_perf']
78 },
79 'linux_perf_bisector':{
80 'chromium_config': 'chromium_official',
81 'gclient_config': 'chromium',
82 'gclient_apply_config': ['chrome_internal'],
83 'parent_buildername': 'Linux Builder',
84 'chromium_config_kwargs': {
85 'BUILD_CONFIG': 'Release',
86 'TARGET_BITS': 64,
87 },
88 'bot_type': 'tester',
89 'compile_targets': [
90 'chromium_builder_perf',
91 ],
92 'testing': {
93 'platform': 'linux',
94 },
95 'tests':[steps.BisectTest()],
96 'chromium_apply_config': ['chromium_perf']
97 },
98 'win64_nv_tester':{
99 'bot_type': 'tester',
100 'chromium_config_kwargs': {
101 'BUILD_CONFIG': 'Release',
102 'TARGET_BITS': 64,
103 },
104 'parent_buildername': 'Win x64 Builder',
105 'chromium_config': 'chromium_official',
106 'gclient_config': 'perf',
107 'testing': {
108 'platform': 'win',
109 },
110 'tests':[steps.BisectTest()],
111 },
112 } 60 }
113 } 61 }
114 62
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/bisect.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698