| 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 |
| 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. |
| 8 """ | 11 """ |
| 9 | 12 |
| 10 from infra.libs.infra_types import freeze | 13 from infra.libs.infra_types import freeze |
| 11 | 14 |
| 12 DEPS = [ | 15 DEPS = [ |
| 13 'bot_update', | 16 'bot_update', |
| 14 'chromium', | 17 'chromium', |
| 15 'chromium_android', | 18 'chromium_android', |
| 16 'gclient', | 19 'gclient', |
| 17 'isolate', | 20 'isolate', |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 _sanitize_nonalpha(buildername)) | 160 _sanitize_nonalpha(buildername)) |
| 158 yield ( | 161 yield ( |
| 159 api.test(test_name) + | 162 api.test(test_name) + |
| 160 api.properties.scheduled() + | 163 api.properties.scheduled() + |
| 161 api.properties.generic(buildername=buildername, | 164 api.properties.generic(buildername=buildername, |
| 162 mastername=mastername) + | 165 mastername=mastername) + |
| 163 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + | 166 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + |
| 164 api.properties(configuration='Release') + | 167 api.properties(configuration='Release') + |
| 165 api.step_data('remove_build_metadata', retcode=1) | 168 api.step_data('remove_build_metadata', retcode=1) |
| 166 ) | 169 ) |
| OLD | NEW |