| 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. | 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. | 10 Remove this copy once all the master have been updated. |
| 11 """ | 11 """ |
| 12 | 12 |
| 13 from infra.libs.infra_types import freeze | |
| 14 from recipe_engine.recipe_api import Property | 13 from recipe_engine.recipe_api import Property |
| 14 from recipe_engine.types import freeze |
| 15 | 15 |
| 16 DEPS = [ | 16 DEPS = [ |
| 17 'bot_update', | 17 'bot_update', |
| 18 'chromium', | 18 'chromium', |
| 19 'chromium_android', | 19 'chromium_android', |
| 20 'gclient', | 20 'gclient', |
| 21 'isolate', | 21 'isolate', |
| 22 'json', | 22 'json', |
| 23 'path', | 23 'path', |
| 24 'platform', | 24 'platform', |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 _sanitize_nonalpha(buildername)) | 172 _sanitize_nonalpha(buildername)) |
| 173 yield ( | 173 yield ( |
| 174 api.test(test_name) + | 174 api.test(test_name) + |
| 175 api.properties.scheduled() + | 175 api.properties.scheduled() + |
| 176 api.properties.generic(buildername=buildername, | 176 api.properties.generic(buildername=buildername, |
| 177 mastername=mastername) + | 177 mastername=mastername) + |
| 178 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + | 178 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + |
| 179 api.properties(configuration='Release') + | 179 api.properties(configuration='Release') + |
| 180 api.step_data('remove_build_metadata', retcode=1) | 180 api.step_data('remove_build_metadata', retcode=1) |
| 181 ) | 181 ) |
| OLD | NEW |