Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: scripts/slave/recipes/swarming/deterministic_build.py

Issue 871603002: Reenable goma on OSX now that pnacl issues are fixed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/slave/recipes/swarming/deterministic_build.expected/full_chromium_swarm_Mac_deterministic_build.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 from infra.libs.infra_types import freeze 10 from infra.libs.infra_types import freeze
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'gclient_config': 'ios', 46 'gclient_config': 'ios',
47 'platform': 'mac', 47 'platform': 'mac',
48 'targets': ['all'], 48 'targets': ['all'],
49 }, 49 },
50 'Linux deterministic build': { 50 'Linux deterministic build': {
51 'chromium_config': 'chromium', 51 'chromium_config': 'chromium',
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 # TODO(sebmarchand): Reactivate goma once the indeterminism coming from 56 'chromium_config': 'chromium',
57 # it has been fixed.
58 'chromium_config': 'chromium_no_goma',
59 'gclient_config': 'chromium', 57 'gclient_config': 'chromium',
60 'platform': 'mac', 58 'platform': 'mac',
61 }, 59 },
62 'Windows deterministic build': { 60 'Windows deterministic build': {
63 'chromium_config': 'chromium', 61 'chromium_config': 'chromium',
64 'gclient_config': 'chromium', 62 'gclient_config': 'chromium',
65 'platform': 'win', 63 'platform': 'win',
66 }, 64 },
67 }) 65 })
68 66
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 _sanitize_nonalpha(buildername)) 131 _sanitize_nonalpha(buildername))
134 yield ( 132 yield (
135 api.test(test_name) + 133 api.test(test_name) +
136 api.properties.scheduled() + 134 api.properties.scheduled() +
137 api.properties.generic(buildername=buildername, 135 api.properties.generic(buildername=buildername,
138 mastername=mastername) + 136 mastername=mastername) +
139 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + 137 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) +
140 api.properties(configuration='Release') + 138 api.properties(configuration='Release') +
141 api.step_data('remove_build_metadata', retcode=1) 139 api.step_data('remove_build_metadata', retcode=1)
142 ) 140 )
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/swarming/deterministic_build.expected/full_chromium_swarm_Mac_deterministic_build.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698