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

Side by Side Diff: scripts/slave/recipes/skia/skia.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 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',
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 'recipe_engine/raw_io', 14 'recipe_engine/raw_io',
15 'skia', 15 'skia',
16 ] 16 ]
17 17
18 18
19 TEST_BUILDERS = { 19 TEST_BUILDERS = {
20 'client.skia': { 20 'client.skia': {
21 'build20-m3': [ 21 'build20-m3': [
22 'Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer', 22 'Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer',
23 ], 23 ],
24 'skiabot-ipad4-000': [ 24 'skiabot-ipad4-000': [
25 'Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug', 25 'Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug',
26 ], 26 ],
27 'skiabot-linux-tester-000': [ 27 'skiabot-linux-tester-000': [
28 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug', 28 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug',
29 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN', 29 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN',
30 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot',
31 ], 30 ],
32 'skiabot-shuttle-ubuntu12-003': [ 31 'skiabot-shuttle-ubuntu12-003': [
33 'Test-ChromeOS-GCC-Link-CPU-AVX-x86_64-Debug', 32 'Test-ChromeOS-GCC-Link-CPU-AVX-x86_64-Debug',
34 ], 33 ],
35 'skiabot-shuttle-ubuntu12-gtx550ti-001': [ 34 'skiabot-shuttle-ubuntu12-gtx550ti-001': [
36 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench', 35 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench',
37 ], 36 ],
38 'skiabot-shuttle-win8-i7-4790k-001': [ 37 'skiabot-shuttle-win8-i7-4790k-001': [
39 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot', 38 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot',
40 ], 39 ],
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 mastername=master, 309 mastername=master,
311 slavename=slave, 310 slavename=slave,
312 buildnumber=6, 311 buildnumber=6,
313 revision='abc123') + 312 revision='abc123') +
314 api.step_data('Get downloaded SK_IMAGE_VERSION', retcode=1) + 313 api.step_data('Get downloaded SK_IMAGE_VERSION', retcode=1) +
315 api.path.exists( 314 api.path.exists(
316 api.path['slave_build'].join('skia'), 315 api.path['slave_build'].join('skia'),
317 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 316 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
318 ) 317 )
319 ) 318 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698