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

Side by Side Diff: scripts/slave/recipes/skia/swarm_test.py

Issue 1862713002: Convert Coverage flavor and bot to Swarming (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Rename Created 4 years, 8 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 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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698