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

Side by Side Diff: scripts/slave/recipes/run_presubmit.py

Issue 13910019: Fix presubmit recipe to fetch description from rietveld. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 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 | « no previous file | 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 def GetFactoryProperties(api, factory_properties, build_properties): 5 def GetFactoryProperties(api, factory_properties, build_properties):
6 # TODO(iannucci): Pass the build repo info directly via build_properties 6 # TODO(iannucci): Pass the build repo info directly via build_properties
7 repo_name = factory_properties.get('repo_name') 7 repo_name = factory_properties.get('repo_name')
8 steps = api.Steps(build_properties) 8 steps = api.Steps(build_properties)
9 9
10 spec = steps.gclient_common_spec(repo_name) 10 spec = steps.gclient_common_spec(repo_name)
(...skipping 10 matching lines...) Expand all
21 return { 21 return {
22 'checkout': 'gclient', 22 'checkout': 'gclient',
23 'gclient_spec': spec, 23 'gclient_spec': spec,
24 'steps': git_steps + [ 24 'steps': git_steps + [
25 steps.apply_issue_step(), 25 steps.apply_issue_step(),
26 steps.step('presubmit', [ 26 steps.step('presubmit', [
27 api.depot_tools_path('presubmit_support.py'), 27 api.depot_tools_path('presubmit_support.py'),
28 '--root', api.checkout_path(), 28 '--root', api.checkout_path(),
29 '--commit', 29 '--commit',
30 '--verbose', '--verbose', 30 '--verbose', '--verbose',
31 '--author', build_properties['blamelist'][0],
32 '--issue', build_properties['issue'], 31 '--issue', build_properties['issue'],
33 '--patchset', build_properties['patchset'], 32 '--patchset', build_properties['patchset'],
34 '--skip_canned', 'CheckRietveldTryJobExecution', 33 '--skip_canned', 'CheckRietveldTryJobExecution',
35 '--skip_canned', 'CheckTreeIsOpen', 34 '--skip_canned', 'CheckTreeIsOpen',
36 '--skip_canned', 'CheckBuildbotPendingBuilds', 35 '--skip_canned', 'CheckBuildbotPendingBuilds',
37 '--skip_canned', 'CheckOwners', 36 '--skip_canned', 'CheckOwners',
38 '--rietveld_url', build_properties['rietveld']]) 37 '--rietveld_url', build_properties['rietveld'],
38 '--rietveld_fetch'])
39 ] 39 ]
40 } 40 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698