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

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

Issue 1920283002: Modify Skia recipes to allow running XSAN on Swarming. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Changes based on code review. 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'skiabot-win-compile-000': [ 55 'skiabot-win-compile-000': [
56 'Build-Win-MSVC-x86-Debug', 56 'Build-Win-MSVC-x86-Debug',
57 ], 57 ],
58 }, 58 },
59 'client.skia.fyi': { 59 'client.skia.fyi': {
60 'skiabot-linux-housekeeper-003': [ 60 'skiabot-linux-housekeeper-003': [
61 'Housekeeper-PerCommit', 61 'Housekeeper-PerCommit',
62 'Housekeeper-PerCommit-Trybot', 62 'Housekeeper-PerCommit-Trybot',
63 'Perf-Android-GCC-Nexus5-CPU-NEON-Arm7-Release-Appurify', 63 'Perf-Android-GCC-Nexus5-CPU-NEON-Arm7-Release-Appurify',
64 'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Release-Appurify', 64 'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Release-Appurify',
65 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-SwarmingMSAN',
65 ], 66 ],
66 }, 67 },
67 } 68 }
68 69
69 70
70 def RunSteps(api): 71 def RunSteps(api):
71 api.skia.gen_steps() 72 api.skia.gen_steps()
72 73
73 74
74 def GenTests(api): 75 def GenTests(api):
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 AndroidTestData(builder, adb='/usr/bin/adb') + 341 AndroidTestData(builder, adb='/usr/bin/adb') +
341 api.step_data('read SKP_VERSION', 342 api.step_data('read SKP_VERSION',
342 stdout=api.raw_io.output('42')) + 343 stdout=api.raw_io.output('42')) +
343 api.step_data('read SK_IMAGE_VERSION', 344 api.step_data('read SK_IMAGE_VERSION',
344 stdout=api.raw_io.output('42')) + 345 stdout=api.raw_io.output('42')) +
345 api.path.exists( 346 api.path.exists(
346 api.path['slave_build'].join('skia'), 347 api.path['slave_build'].join('skia'),
347 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 348 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
348 ) 349 )
349 ) 350 )
350
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698