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

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

Issue 1241323004: Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Roll to latest recipes-py Created 5 years, 3 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/ozone_ecs.py ('k') | scripts/slave/recipes/syzygy/continuous.py » ('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 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
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 )
OLDNEW
« no previous file with comments | « scripts/slave/recipes/ozone_ecs.py ('k') | scripts/slave/recipes/syzygy/continuous.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698