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

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

Issue 2128613005: Archive Linux perf builds for manual bisect (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Archive Linux perf builds for manual bisect Created 4 years, 4 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import collections 5 import collections
6 6
7 from . import steps 7 from . import steps
8 8
9 9
10 _builders = collections.defaultdict(dict) 10 _builders = collections.defaultdict(dict)
11 11
12 12
13 SPEC = { 13 SPEC = {
14 'builders': {}, 14 'builders': {},
15 'settings': { 15 'settings': {
16 'build_gs_bucket': 'chrome-perf', 16 'build_gs_bucket': 'chrome-perf',
17 # Bucket for stroring builds for manula bisect
dtu 2016/08/05 21:06:19 spelling nit: storing, manual
miimnk 2016/08/08 22:41:29 Done.
18 'bisect_build_gs_bucket' : 'chrome-test-builds',
dtu 2016/08/05 21:06:19 nit: no space before :
miimnk 2016/08/08 22:41:28 Done.
19 'bisect_build_gs_extra' : 'official-by-commit'
17 }, 20 },
18 } 21 }
19 22
20 23
21 def _BaseSpec(bot_type, chromium_apply_config, disable_tests, 24 def _BaseSpec(bot_type, chromium_apply_config, disable_tests,
22 gclient_config, platform, target_bits, tests): 25 gclient_config, platform, target_bits, tests):
23 return { 26 return {
24 'bot_type': bot_type, 27 'bot_type': bot_type,
25 'chromium_apply_config' : chromium_apply_config, 28 'chromium_apply_config' : chromium_apply_config,
26 'chromium_config': 'chromium_official', 29 'chromium_config': 'chromium_official',
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac', 168 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac',
166 num_host_shards=5) 169 num_host_shards=5)
167 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac', 170 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac',
168 num_host_shards=5) 171 num_host_shards=5)
169 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', 172 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac',
170 num_host_shards=5) 173 num_host_shards=5)
171 174
172 175
173 _AddTestSpec('Linux Perf', 'linux-release', 'linux', 176 _AddTestSpec('Linux Perf', 'linux-release', 'linux',
174 num_host_shards=5) 177 num_host_shards=5)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698