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

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

Issue 1846073003: Remove deterministic trybots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 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_win_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 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.
11 """ 9 """
12 10
13 from recipe_engine.recipe_api import Property 11 from recipe_engine.recipe_api import Property
14 from recipe_engine.types import freeze 12 from recipe_engine.types import freeze
15 13
16 DEPS = [ 14 DEPS = [
17 'depot_tools/bot_update', 15 'depot_tools/bot_update',
18 'chromium', 16 'chromium',
19 'chromium_android', 17 'chromium_android',
20 'depot_tools/gclient', 18 'depot_tools/gclient',
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 _sanitize_nonalpha(buildername)) 169 _sanitize_nonalpha(buildername))
172 yield ( 170 yield (
173 api.test(test_name) + 171 api.test(test_name) +
174 api.properties.scheduled() + 172 api.properties.scheduled() +
175 api.properties.generic(buildername=buildername, 173 api.properties.generic(buildername=buildername,
176 mastername=mastername) + 174 mastername=mastername) +
177 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + 175 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) +
178 api.properties(configuration='Release') + 176 api.properties(configuration='Release') +
179 api.step_data('remove_build_metadata', retcode=1) 177 api.step_data('remove_build_metadata', retcode=1)
180 ) 178 )
OLDNEW
« no previous file with comments | « scripts/slave/recipes/deterministic_build.expected/full_chromium_swarm_win_deterministic.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698