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 test. | 6 # Recipe module for Skia Swarming test. |
7 | 7 |
8 | 8 |
9 DEPS = [ | 9 DEPS = [ |
10 'recipe_engine/json', | 10 'recipe_engine/json', |
(...skipping 12 matching lines...) Expand all Loading... |
23 ], | 23 ], |
24 'skiabot-win-tester-000': [ | 24 'skiabot-win-tester-000': [ |
25 'Test-Win8-MSVC-ShuttleB-CPU-AVX2-x86_64-Release-Trybot' | 25 'Test-Win8-MSVC-ShuttleB-CPU-AVX2-x86_64-Release-Trybot' |
26 ], | 26 ], |
27 'skiabot-nexus6-001': [ | 27 'skiabot-nexus6-001': [ |
28 'Test-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Release', | 28 'Test-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Release', |
29 ], | 29 ], |
30 'skiabot-linux-swarm-012': [ | 30 'skiabot-linux-swarm-012': [ |
31 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', | 31 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', |
32 ], | 32 ], |
| 33 'skiabot-linux-swarm-013': [ |
| 34 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot', |
| 35 ], |
33 }, | 36 }, |
34 } | 37 } |
35 | 38 |
36 | 39 |
37 def RunSteps(api): | 40 def RunSteps(api): |
38 api.skia.setup(running_in_swarming=True) | 41 api.skia.setup(running_in_swarming=True) |
39 api.skia.test_steps() | 42 api.skia.test_steps() |
40 api.skia.cleanup_steps() | 43 api.skia.cleanup_steps() |
41 | 44 |
42 | 45 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 if 'Trybot' in builder: | 85 if 'Trybot' in builder: |
83 test += api.properties(issue=500, | 86 test += api.properties(issue=500, |
84 patchset=1, | 87 patchset=1, |
85 rietveld='https://codereview.chromium.org') | 88 rietveld='https://codereview.chromium.org') |
86 if 'Win' in builder: | 89 if 'Win' in builder: |
87 test += api.platform('win', 64) | 90 test += api.platform('win', 64) |
88 | 91 |
89 | 92 |
90 yield test | 93 yield test |
91 | 94 |
OLD | NEW |