OLD | NEW |
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 """Recipe to test the deterministic build. | 5 """Recipe to test the deterministic build. |
6 | 6 |
7 Waterfall page: https://build.chromium.org/p/chromium.swarm/waterfall | 7 Waterfall page: https://build.chromium.org/p/chromium.swarm/waterfall |
8 | 8 |
9 TODO(sebmarchand): This recipe has been moved to the recipe's root directory. | |
10 Remove this copy once all the master have been updated. | |
11 """ | 9 """ |
12 | 10 |
13 from recipe_engine.recipe_api import Property | 11 from recipe_engine.recipe_api import Property |
14 from recipe_engine.types import freeze | 12 from recipe_engine.types import freeze |
15 | 13 |
16 DEPS = [ | 14 DEPS = [ |
17 'depot_tools/bot_update', | 15 'depot_tools/bot_update', |
18 'chromium', | 16 'chromium', |
19 'chromium_android', | 17 'chromium_android', |
20 'depot_tools/gclient', | 18 'depot_tools/gclient', |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 _sanitize_nonalpha(buildername)) | 169 _sanitize_nonalpha(buildername)) |
172 yield ( | 170 yield ( |
173 api.test(test_name) + | 171 api.test(test_name) + |
174 api.properties.scheduled() + | 172 api.properties.scheduled() + |
175 api.properties.generic(buildername=buildername, | 173 api.properties.generic(buildername=buildername, |
176 mastername=mastername) + | 174 mastername=mastername) + |
177 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + | 175 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + |
178 api.properties(configuration='Release') + | 176 api.properties(configuration='Release') + |
179 api.step_data('remove_build_metadata', retcode=1) | 177 api.step_data('remove_build_metadata', retcode=1) |
180 ) | 178 ) |
OLD | NEW |