Chromium Code Reviews| 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 | 9 |
| 10 DEPS = [ | 10 DEPS = [ |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 41 'TARGET_PLATFORM': 'ios', | 41 'TARGET_PLATFORM': 'ios', |
| 42 'TARGET_BITS': 32, | 42 'TARGET_BITS': 32, |
| 43 }, | 43 }, |
| 44 'gclient_config': 'ios', | 44 'gclient_config': 'ios', |
| 45 'platform': 'mac', | 45 'platform': 'mac', |
| 46 'targets': ['all'], | 46 'targets': ['all'], |
| 47 }, | 47 }, |
| 48 'Linux deterministic build': { | 48 'Linux deterministic build': { |
| 49 # TODO(sebmarchand): Reactivate goma once the indeterminism coming from | 49 # TODO(sebmarchand): Reactivate goma once the indeterminism coming from |
| 50 # it has been fixed. | 50 # it has been fixed. |
| 51 'chromium_config': 'chromium_no_goma', | 51 'chromium_config': 'chromium_no_goma', |
|
M-A Ruel
2015/01/15 18:49:00
should we reenable it now on linux to see the curr
Sébastien Marchand
2015/01/15 19:12:35
I tried locally and it still doesn't work :(.
| |
| 52 'gclient_config': 'chromium', | 52 'gclient_config': 'chromium', |
| 53 'platform': 'linux', | 53 'platform': 'linux', |
| 54 }, | 54 }, |
| 55 'Mac deterministic build': { | 55 'Mac deterministic build': { |
| 56 'chromium_config': 'chromium', | 56 # TODO(sebmarchand): Reactivate goma once the indeterminism coming from |
| 57 # it has been fixed. | |
| 58 'chromium_config': 'chromium_no_goma', | |
| 57 'gclient_config': 'chromium', | 59 'gclient_config': 'chromium', |
| 58 'platform': 'mac', | 60 'platform': 'mac', |
| 59 }, | 61 }, |
| 60 'Windows deterministic build': { | 62 'Windows deterministic build': { |
| 61 # TODO(sebmarchand): Reactivate goma once the indeterminism coming from | 63 # TODO(sebmarchand): Reactivate goma once the indeterminism coming from |
| 62 # it has been fixed. | 64 # it has been fixed. |
| 63 'chromium_config': 'chromium_no_goma', | 65 'chromium_config': 'chromium_no_goma', |
| 64 'gclient_config': 'chromium', | 66 'gclient_config': 'chromium', |
| 65 'platform': 'win', | 67 'platform': 'win', |
| 66 }, | 68 }, |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 133 _sanitize_nonalpha(buildername)) | 135 _sanitize_nonalpha(buildername)) |
| 134 yield ( | 136 yield ( |
| 135 api.test(test_name) + | 137 api.test(test_name) + |
| 136 api.properties.scheduled() + | 138 api.properties.scheduled() + |
| 137 api.properties.generic(buildername=buildername, | 139 api.properties.generic(buildername=buildername, |
| 138 mastername=mastername) + | 140 mastername=mastername) + |
| 139 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + | 141 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + |
| 140 api.properties(configuration='Release') + | 142 api.properties(configuration='Release') + |
| 141 api.step_data('remove_build_metadata', retcode=1) | 143 api.step_data('remove_build_metadata', retcode=1) |
| 142 ) | 144 ) |
| OLD | NEW |