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

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

Issue 2279953002: lightweight builds archiving for mac and win64 (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: lightweight builds archiving for mac and win64 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 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)
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 for shard_index in xrange(num_host_shards): 117 for shard_index in xrange(num_host_shards):
118 builder_name = '%s (%d)' % (name, shard_index + 1) 118 builder_name = '%s (%d)' % (name, shard_index + 1)
119 SPEC['builders'][builder_name] = _TestSpec( 119 SPEC['builders'][builder_name] = _TestSpec(
120 'chromium_perf', parent_builder, perf_id, platform, target_bits, 120 'chromium_perf', parent_builder, perf_id, platform, target_bits,
121 max_battery_temp, shard_index, num_host_shards, num_device_shards) 121 max_battery_temp, shard_index, num_host_shards, num_device_shards)
122 122
123 123
124 _AddBuildSpec('Android Builder', 'android', target_bits=32) 124 _AddBuildSpec('Android Builder', 'android', target_bits=32)
125 _AddBuildSpec('Android arm64 Builder', 'android') 125 _AddBuildSpec('Android arm64 Builder', 'android')
126 _AddBuildSpec('Win Builder', 'win', target_bits=32) 126 _AddBuildSpec('Win Builder', 'win', target_bits=32)
127 _AddBuildSpec('Win x64 Builder', 'win') 127 _AddBuildSpec('Win x64 Builder', 'win', add_to_bisect=True)
128 _AddBuildSpec('Mac Builder', 'mac') 128 _AddBuildSpec('Mac Builder', 'mac', add_to_bisect=True)
129 _AddBuildSpec('Linux Builder', 'linux', add_to_bisect=True) 129 _AddBuildSpec('Linux Builder', 'linux', add_to_bisect=True)
130 130
131 131
132 _AddTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5', 'android', 132 _AddTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5', 'android',
133 target_bits=32, num_device_shards=7, num_host_shards=3) 133 target_bits=32, num_device_shards=7, num_host_shards=3)
134 _AddTestSpec('Android Nexus5 Perf', 'android-nexus5', 'android', 134 _AddTestSpec('Android Nexus5 Perf', 'android-nexus5', 'android',
135 target_bits=32, num_device_shards=7, num_host_shards=3) 135 target_bits=32, num_device_shards=7, num_host_shards=3)
136 _AddTestSpec('Android Nexus5X Perf', 'android-nexus5X', 'android', 136 _AddTestSpec('Android Nexus5X Perf', 'android-nexus5X', 'android',
137 target_bits=32, num_device_shards=7, num_host_shards=3) 137 target_bits=32, num_device_shards=7, num_host_shards=3)
138 _AddTestSpec('Android Nexus6 Perf', 'android-nexus6', 'android', 138 _AddTestSpec('Android Nexus6 Perf', 'android-nexus6', 'android',
(...skipping 29 matching lines...) Expand all
168 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac', 168 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac',
169 num_host_shards=5) 169 num_host_shards=5)
170 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac', 170 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac',
171 num_host_shards=5) 171 num_host_shards=5)
172 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', 172 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac',
173 num_host_shards=5) 173 num_host_shards=5)
174 174
175 175
176 _AddTestSpec('Linux Perf', 'linux-release', 'linux', 176 _AddTestSpec('Linux Perf', 'linux-release', 'linux',
177 num_host_shards=5) 177 num_host_shards=5)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698