OLD | NEW |
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-compile-000': [ | 20 'skiabot-linux-compile-000': [ |
21 'Build-Mac-Clang-Arm7-Release-iOS', | 21 'Build-Mac-Clang-Arm7-Release-iOS', |
22 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', | 22 'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot', |
23 'Build-Ubuntu-GCC-Arm7-Release-Android', | 23 'Build-Ubuntu-GCC-Arm7-Release-Android', |
24 ], | 24 ], |
25 'skiabot-win-compile-000': [ | 25 'skiabot-win-compile-000': [ |
26 'Build-Win-MSVC-x86-Debug', | 26 'Build-Win-MSVC-x86-Debug', |
27 ], | 27 ], |
| 28 'skiabot-linux-swarm-007': [ |
| 29 'Build-Ubuntu-GCC-x86_64-Debug-SwarmingMSAN', |
| 30 ], |
28 'skiabot-linux-swarm-012': [ | 31 'skiabot-linux-swarm-012': [ |
29 'Build-Ubuntu-GCC-x86_64-Release-Valgrind', | 32 'Build-Ubuntu-GCC-x86_64-Release-Valgrind', |
30 ], | 33 ], |
31 'skiabot-linux-swarm-014': [ | 34 'skiabot-linux-swarm-014': [ |
32 'Build-Ubuntu-GCC-x86_64-Release-CMake', | 35 'Build-Ubuntu-GCC-x86_64-Release-CMake', |
33 ], | 36 ], |
34 'skiabot-linux-swarm-015': [ | 37 'skiabot-linux-swarm-015': [ |
35 'Build-Mac-Clang-x86_64-Release-CMake', | 38 'Build-Mac-Clang-x86_64-Release-CMake', |
36 ], | 39 ], |
37 }, | 40 }, |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 buildnumber=5, | 93 buildnumber=5, |
91 revision='abc123', | 94 revision='abc123', |
92 swarm_out_dir='[SWARM_OUT_DIR]') + | 95 swarm_out_dir='[SWARM_OUT_DIR]') + |
93 api.path.exists( | 96 api.path.exists( |
94 api.path['slave_build'].join('skia'), | 97 api.path['slave_build'].join('skia'), |
95 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | 98 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') |
96 ) + | 99 ) + |
97 api.platform('win', 64) + | 100 api.platform('win', 64) + |
98 api.step_data('build most', retcode=1) | 101 api.step_data('build most', retcode=1) |
99 ) | 102 ) |
OLD | NEW |