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

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

Issue 2189713003: recipes: Add a GN flavor. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: wintests 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 '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 'skia', 14 'skia',
15 ] 15 ]
16 16
17 17
18 TEST_BUILDERS = { 18 TEST_BUILDERS = {
19 'client.skia.compile': { 19 'client.skia.compile': {
20 'skiabot-linux-swarm-000': [ 20 'skiabot-linux-swarm-000': [
21 'Build-Mac-Clang-Arm7-Debug-Android', 21 'Build-Mac-Clang-Arm7-Debug-Android',
22 'Build-Mac-Clang-Arm7-Release-iOS', 22 'Build-Mac-Clang-Arm7-Release-iOS',
23 'Build-Mac-Clang-x86_64-Debug-CommandBuffer', 23 'Build-Mac-Clang-x86_64-Debug-CommandBuffer',
24 'Build-Mac-Clang-x86_64-Release-CMake', 24 'Build-Mac-Clang-x86_64-Release-CMake',
25 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', 25 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot',
26 'Build-Ubuntu-GCC-Arm7-Release-Android', 26 'Build-Ubuntu-GCC-Arm7-Release-Android',
27 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan', 27 'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan',
28 'Build-Ubuntu-GCC-x86_64-Debug-MSAN', 28 'Build-Ubuntu-GCC-x86_64-Debug-MSAN',
29 'Build-Ubuntu-GCC-x86_64-Debug-GN',
29 'Build-Ubuntu-GCC-x86_64-Release-CMake', 30 'Build-Ubuntu-GCC-x86_64-Release-CMake',
30 'Build-Ubuntu-GCC-x86_64-Release-PDFium', 31 'Build-Ubuntu-GCC-x86_64-Release-PDFium',
31 'Build-Ubuntu-GCC-x86_64-Release-Shared', 32 'Build-Ubuntu-GCC-x86_64-Release-Shared',
32 'Build-Ubuntu-GCC-x86_64-Release-Valgrind', 33 'Build-Ubuntu-GCC-x86_64-Release-Valgrind',
33 'Build-Win-MSVC-x86-Debug', 34 'Build-Win-MSVC-x86-Debug',
35 'Build-Win-MSVC-x86-Release-GN',
34 'Build-Win-MSVC-x86_64-Release-Vulkan', 36 'Build-Win-MSVC-x86_64-Release-Vulkan',
35 ], 37 ],
36 }, 38 },
37 } 39 }
38 40
39 41
40 def RunSteps(api): 42 def RunSteps(api):
41 api.skia.setup() 43 api.skia.setup()
42 api.skia.compile_steps() 44 api.skia.compile_steps()
43 api.skia.cleanup_steps() 45 api.skia.cleanup_steps()
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 path_config='kitchen', 112 path_config='kitchen',
111 swarm_out_dir='[SWARM_OUT_DIR]', 113 swarm_out_dir='[SWARM_OUT_DIR]',
112 rietveld='https://codereview.chromium.org', 114 rietveld='https://codereview.chromium.org',
113 patchset=1, 115 patchset=1,
114 issue=2147533002L) + 116 issue=2147533002L) +
115 api.path.exists( 117 api.path.exists(
116 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 118 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
117 ) + 119 ) +
118 api.platform('win', 64) 120 api.platform('win', 64)
119 ) 121 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698