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

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

Issue 1859993003: Fix dimensions for Skia iOS Swarming bots (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: OS 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 compile. 6 # Recipe module for Skia Swarming compile.
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 'skia', 14 'skia',
15 ] 15 ]
16 16
17 17
18 TEST_BUILDERS = { 18 TEST_BUILDERS = {
19 'client.skia.compile': { 19 'client.skia.compile': {
20 'skiabot-linux-compile-000': [ 20 'skiabot-linux-compile-000': [
21 'Build-Mac-Clang-Arm7-Release-iOS',
21 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', 22 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot',
22 'Build-Ubuntu-GCC-Arm7-Release-Android', 23 'Build-Ubuntu-GCC-Arm7-Release-Android',
23 ], 24 ],
24 'skiabot-win-compile-000': [ 25 'skiabot-win-compile-000': [
25 'Build-Win-MSVC-x86-Debug-VS2015', 26 'Build-Win-MSVC-x86-Debug-VS2015',
26 ], 27 ],
27 }, 28 },
28 } 29 }
29 30
30 31
(...skipping 26 matching lines...) Expand all
57 if 'Android' in builder: 58 if 'Android' in builder:
58 ccache = '/usr/bin/ccache' if 'Appurify' in builder else None 59 ccache = '/usr/bin/ccache' if 'Appurify' in builder else None
59 test += api.step_data('has ccache?', 60 test += api.step_data('has ccache?',
60 stdout=api.json.output({'ccache':ccache})) 61 stdout=api.json.output({'ccache':ccache}))
61 if 'Trybot' in builder: 62 if 'Trybot' in builder:
62 test += api.properties(issue=500, 63 test += api.properties(issue=500,
63 patchset=1, 64 patchset=1,
64 rietveld='https://codereview.chromium.org') 65 rietveld='https://codereview.chromium.org')
65 66
66 yield test 67 yield test
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698