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

Side by Side Diff: infra/bots/recipes/swarm_perf.py

Issue 2189393002: Stop running nanobench on Test.*Debug bots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix upload_perf_results 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 # Recipe module for Skia Swarming perf. 6 # Recipe module for Skia Swarming perf.
7 7
8 8
9 DEPS = [ 9 DEPS = [
10 'recipe_engine/json', 10 'recipe_engine/json',
11 'recipe_engine/path', 11 'recipe_engine/path',
12 'recipe_engine/platform', 12 'recipe_engine/platform',
13 'recipe_engine/properties', 13 'recipe_engine/properties',
14 'recipe_engine/raw_io', 14 'recipe_engine/raw_io',
15 'skia', 15 'skia',
16 ] 16 ]
17 17
18 18
19 TEST_BUILDERS = { 19 TEST_BUILDERS = {
20 'client.skia': { 20 'client.skia': {
21 'skiabot-linux-swarm-000': [ 21 'skiabot-linux-swarm-000': [
22 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release', 22 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release',
23 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug',
23 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot', 24 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot',
24 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', 25 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
25 'Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release', 26 'Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release',
26 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench', 27 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench',
27 ], 28 ],
28 }, 29 },
29 } 30 }
30 31
31 32
32 def RunSteps(api): 33 def RunSteps(api):
33 api.skia.setup() 34 api.skia.setup()
34 api.skia.perf_steps() 35 api.skia.perf_steps()
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 api.path.exists( 111 api.path.exists(
111 api.path['slave_build'].join('skia'), 112 api.path['slave_build'].join('skia'),
112 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', 113 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
113 'skimage', 'VERSION'), 114 'skimage', 'VERSION'),
114 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', 115 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
115 'skp', 'VERSION'), 116 'skp', 'VERSION'),
116 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 117 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
117 ) + 118 ) +
118 api.platform('win', 64) 119 api.platform('win', 64)
119 ) 120 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698