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

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

Issue 1916263003: Reland "Skia: Maintain a checkout on swarming (compile) bots" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix expectations after roll Created 4 years, 7 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 builders. 6 # Recipe module for Skia builders.
7 7
8 8
9 DEPS = [ 9 DEPS = [
10 'recipe_engine/json', 10 'recipe_engine/json',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 143
144 yield test 144 yield test
145 145
146 builder = 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug' 146 builder = 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug'
147 yield ( 147 yield (
148 api.test('failed_dm') + 148 api.test('failed_dm') +
149 api.properties(buildername=builder, 149 api.properties(buildername=builder,
150 mastername='client.skia', 150 mastername='client.skia',
151 slavename='skiabot-linux-tester-000', 151 slavename='skiabot-linux-tester-000',
152 buildnumber=6) + 152 buildnumber=6) +
153 api.step_data('dm', retcode=1) 153 api.step_data('dm', retcode=1) +
154 api.path.exists(api.path['slave_build'])
154 ) 155 )
155 156
156 yield ( 157 yield (
157 api.test('has_ccache_android') + 158 api.test('has_ccache_android') +
158 api.properties(buildername='Build-Ubuntu-GCC-Arm7-Debug-Android', 159 api.properties(buildername='Build-Ubuntu-GCC-Arm7-Debug-Android',
159 mastername='client.skia.compile', 160 mastername='client.skia.compile',
160 slavename='skiabot-linux-compile-000') + 161 slavename='skiabot-linux-compile-000') +
161 api.step_data( 162 api.step_data(
162 'has ccache?', 163 'has ccache?',
163 stdout=api.json.output({'ccache':'/usr/bin/ccache'})) 164 stdout=api.json.output({'ccache':'/usr/bin/ccache'})) +
165 api.path.exists(api.path['slave_build'])
164 ) 166 )
165 167
166 builder = 'Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Debug' 168 builder = 'Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Debug'
167 master = 'client.skia.android' 169 master = 'client.skia.android'
168 slave = 'skiabot-shuttle-ubuntu12-nexus7-001' 170 slave = 'skiabot-shuttle-ubuntu12-nexus7-001'
169 yield ( 171 yield (
170 api.test('failed_get_hashes') + 172 api.test('failed_get_hashes') +
171 api.properties(buildername=builder, 173 api.properties(buildername=builder,
172 mastername=master, 174 mastername=master,
173 slavename=slave, 175 slavename=slave,
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 mastername=master, 311 mastername=master,
310 slavename=slave, 312 slavename=slave,
311 buildnumber=6, 313 buildnumber=6,
312 revision='abc123') + 314 revision='abc123') +
313 api.step_data('Get downloaded SK_IMAGE_VERSION', retcode=1) + 315 api.step_data('Get downloaded SK_IMAGE_VERSION', retcode=1) +
314 api.path.exists( 316 api.path.exists(
315 api.path['slave_build'].join('skia'), 317 api.path['slave_build'].join('skia'),
316 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 318 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
317 ) 319 )
318 ) 320 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698