OLD | NEW |
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 'build/file', | 10 'build/file', |
11 'core', | 11 'core', |
12 'recipe_engine/json', | 12 'recipe_engine/json', |
13 'recipe_engine/path', | 13 'recipe_engine/path', |
14 'recipe_engine/platform', | 14 'recipe_engine/platform', |
15 'recipe_engine/properties', | 15 'recipe_engine/properties', |
16 'recipe_engine/raw_io', | 16 'recipe_engine/raw_io', |
17 'run', | 17 'run', |
18 'flavor', | 18 'flavor', |
19 'vars', | 19 'vars', |
20 ] | 20 ] |
21 | 21 |
22 | 22 |
23 TEST_BUILDERS = { | 23 TEST_BUILDERS = { |
24 'client.skia': { | 24 'client.skia': { |
25 'skiabot-linux-swarm-000': [ | 25 'skiabot-linux-swarm-000': [ |
26 'Perf-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Release', | 26 'Perf-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Release', |
| 27 'Perf-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan', |
27 'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Debug', | 28 'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Debug', |
28 'Perf-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Release', | 29 'Perf-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Release', |
29 'Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release', | 30 'Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release', |
30 'Perf-Android-GCC-NexusPlayer-GPU-PowerVR-x86-Release', | 31 'Perf-Android-GCC-NexusPlayer-GPU-PowerVR-x86-Release', |
31 'Perf-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan', | |
32 'Perf-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug', | |
33 'Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release-GN', | 32 'Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release-GN', |
| 33 'Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release-GN', |
34 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', | 34 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', |
35 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench', | 35 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench', |
| 36 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug', |
36 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release', | 37 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release', |
37 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug', | |
38 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot', | 38 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot', |
| 39 'Perf-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug', |
39 ], | 40 ], |
40 }, | 41 }, |
41 } | 42 } |
42 | 43 |
43 | 44 |
44 def nanobench_flags(bot): | 45 def nanobench_flags(bot): |
45 args = ['--pre_log'] | 46 args = ['--pre_log'] |
46 | 47 |
47 if 'GPU' in bot: | 48 if 'GPU' in bot: |
48 args.append('--images') | 49 args.append('--images') |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 buildername='Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-' + | 342 buildername='Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-' + |
342 'Valgrind-Trybot', | 343 'Valgrind-Trybot', |
343 mastername='client.skia', | 344 mastername='client.skia', |
344 slavename='skiabot-linux-swarm-000', | 345 slavename='skiabot-linux-swarm-000', |
345 buildnumber=5, | 346 buildnumber=5, |
346 path_config='kitchen', | 347 path_config='kitchen', |
347 swarm_out_dir='[SWARM_OUT_DIR]', | 348 swarm_out_dir='[SWARM_OUT_DIR]', |
348 revision='abc123', | 349 revision='abc123', |
349 **gerrit_kwargs) | 350 **gerrit_kwargs) |
350 ) | 351 ) |
OLD | NEW |