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

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

Issue 2167883004: [Skia] Convert SKPs to a CIPD package (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Non-canary bot provides --upload_to_partner_bucket Created 4 years, 5 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',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 api.properties(buildername=builder, 68 api.properties(buildername=builder,
69 mastername=mastername, 69 mastername=mastername,
70 slavename=slavename, 70 slavename=slavename,
71 buildnumber=5, 71 buildnumber=5,
72 revision='abc123', 72 revision='abc123',
73 swarm_out_dir='[SWARM_OUT_DIR]') + 73 swarm_out_dir='[SWARM_OUT_DIR]') +
74 api.path.exists( 74 api.path.exists(
75 api.path['slave_build'].join('skia'), 75 api.path['slave_build'].join('skia'),
76 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', 76 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
77 'skimage', 'VERSION'), 77 'skimage', 'VERSION'),
78 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
79 'skp', 'VERSION'),
78 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 80 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
79 ) 81 )
80 ) 82 )
81 if ('Android' in builder and 83 if ('Android' in builder and
82 ('Test' in builder or 'Perf' in builder) and 84 ('Test' in builder or 'Perf' in builder) and
83 not 'Appurify' in builder): 85 not 'Appurify' in builder):
84 test += AndroidTestData(builder) 86 test += AndroidTestData(builder)
85 if 'Trybot' in builder: 87 if 'Trybot' in builder:
86 test += api.properties(issue=500, 88 test += api.properties(issue=500,
87 patchset=1, 89 patchset=1,
(...skipping 12 matching lines...) Expand all
100 buildnumber=5, 102 buildnumber=5,
101 revision='abc123', 103 revision='abc123',
102 swarm_out_dir='[SWARM_OUT_DIR]', 104 swarm_out_dir='[SWARM_OUT_DIR]',
103 rietveld='https://codereview.chromium.org', 105 rietveld='https://codereview.chromium.org',
104 patchset=1, 106 patchset=1,
105 issue=2147533002L) + 107 issue=2147533002L) +
106 api.path.exists( 108 api.path.exists(
107 api.path['slave_build'].join('skia'), 109 api.path['slave_build'].join('skia'),
108 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', 110 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
109 'skimage', 'VERSION'), 111 'skimage', 'VERSION'),
112 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
113 'skp', 'VERSION'),
110 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 114 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
111 ) + 115 ) +
112 api.platform('win', 64) 116 api.platform('win', 64)
113 ) 117 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698