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

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

Issue 1170623002: Add some deterministic build trybots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Add the test expectation files. Created 5 years, 6 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 | « scripts/slave/recipes/deterministic_build.expected/full_chromium_swarm_windows_deterministic.json ('k') | no next file » | 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
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
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 )
OLDNEW
« no previous file with comments | « scripts/slave/recipes/deterministic_build.expected/full_chromium_swarm_windows_deterministic.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698