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

Side by Side Diff: infra/bots/recipes/swarm_compile.py

Issue 2217523002: [recipes] Fixes for Coverage bot (Closed) Base URL: https://skia.googlesource.com/skia.git@merge_buildbot_spec_sub2
Patch Set: Fix compile env Created 4 years, 4 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 'core', 10 'core',
11 'recipe_engine/json', 11 'recipe_engine/json',
12 'recipe_engine/path', 12 'recipe_engine/path',
13 'recipe_engine/platform', 13 'recipe_engine/platform',
14 'recipe_engine/properties', 14 'recipe_engine/properties',
15 'recipe_engine/python', 15 'recipe_engine/python',
16 'flavor', 16 'flavor',
17 'run', 17 'run',
18 'vars', 18 'vars',
19 ] 19 ]
20 20
21 21
22 TEST_BUILDERS = { 22 TEST_BUILDERS = {
23 'client.skia.compile': { 23 'client.skia.compile': {
24 'skiabot-linux-swarm-000': [ 24 'skiabot-linux-swarm-000': [
25 'Build-Mac-Clang-Arm7-Debug-Android', 25 'Build-Mac-Clang-Arm7-Debug-Android',
26 'Build-Mac-Clang-Arm7-Release-iOS', 26 'Build-Mac-Clang-Arm7-Release-iOS',
27 'Build-Mac-Clang-x86_64-Debug-CommandBuffer', 27 'Build-Mac-Clang-x86_64-Debug-CommandBuffer',
28 'Build-Mac-Clang-x86_64-Release-CMake', 28 'Build-Mac-Clang-x86_64-Release-CMake',
29 'Build-Ubuntu-Clang-x86_64-Debug-GN',
29 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', 30 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot',
30 'Build-Ubuntu-GCC-Arm7-Release-Android', 31 'Build-Ubuntu-GCC-Arm7-Release-Android',
31 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan', 32 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan',
32 'Build-Ubuntu-GCC-x86-Debug', 33 'Build-Ubuntu-GCC-x86-Debug',
33 'Build-Ubuntu-GCC-x86_64-Debug-MSAN', 34 'Build-Ubuntu-GCC-x86_64-Debug-MSAN',
34 'Build-Ubuntu-Clang-x86_64-Debug-GN',
35 'Build-Ubuntu-GCC-x86_64-Debug-GN', 35 'Build-Ubuntu-GCC-x86_64-Debug-GN',
36 'Build-Ubuntu-GCC-x86_64-Release-CMake', 36 'Build-Ubuntu-GCC-x86_64-Release-CMake',
37 'Build-Ubuntu-GCC-x86_64-Release-PDFium', 37 'Build-Ubuntu-GCC-x86_64-Release-PDFium',
38 'Build-Ubuntu-GCC-x86_64-Release-Shared', 38 'Build-Ubuntu-GCC-x86_64-Release-Shared',
39 'Build-Ubuntu-GCC-x86_64-Release-Valgrind', 39 'Build-Ubuntu-GCC-x86_64-Release-Valgrind',
40 'Build-Win-MSVC-x86-Debug', 40 'Build-Win-MSVC-x86-Debug',
41 'Build-Win-MSVC-x86-Release-GN', 41 'Build-Win-MSVC-x86-Release-GN',
42 'Build-Win-MSVC-x86_64-Release-Vulkan', 42 'Build-Win-MSVC-x86_64-Release-Vulkan',
43 ], 43 ],
44 }, 44 },
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 path_config='kitchen', 157 path_config='kitchen',
158 swarm_out_dir='[SWARM_OUT_DIR]', 158 swarm_out_dir='[SWARM_OUT_DIR]',
159 rietveld='https://codereview.chromium.org', 159 rietveld='https://codereview.chromium.org',
160 patchset=1, 160 patchset=1,
161 issue=2147533002L) + 161 issue=2147533002L) +
162 api.path.exists( 162 api.path.exists(
163 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 163 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
164 ) + 164 ) +
165 api.platform('win', 64) 165 api.platform('win', 64)
166 ) 166 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698