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

Side by Side Diff: recipe_modules/bot_update/example.py

Issue 1762513002: Use gclient's git_cache setting in bot_update/api.py (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Make gclient cache_dir config Static again Created 4 years, 9 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
« no previous file with comments | « recipe_modules/bot_update/api.py ('k') | recipe_modules/bot_update/example.expected/basic.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 DEPS = [ 5 DEPS = [
6 'bot_update', 6 'bot_update',
7 'gclient', 7 'gclient',
8 'recipe_engine/path', 8 'recipe_engine/path',
9 'recipe_engine/properties', 9 'recipe_engine/properties',
10 ] 10 ]
11 11
12 def RunSteps(api): 12 def RunSteps(api):
13 api.gclient.use_mirror = True 13 api.gclient.use_mirror = True
14 14
15 src_cfg = api.gclient.make_config() 15 src_cfg = api.gclient.make_config(GIT_MODE=True, CACHE_DIR='[GIT_CACHE]')
16 soln = src_cfg.solutions.add() 16 soln = src_cfg.solutions.add()
17 soln.name = 'src' 17 soln.name = 'src'
18 soln.url = 'svn://svn.chromium.org/chrome/trunk/src' 18 soln.url = 'svn://svn.chromium.org/chrome/trunk/src'
19 soln.revision = api.properties.get('revision') 19 soln.revision = api.properties.get('revision')
20 api.gclient.c = src_cfg 20 api.gclient.c = src_cfg
21 api.gclient.c.revisions = api.properties.get('revisions', {}) 21 api.gclient.c.revisions = api.properties.get('revisions', {})
22 api.gclient.c.got_revision_mapping['src'] = 'got_cr_revision' 22 api.gclient.c.got_revision_mapping['src'] = 'got_cr_revision'
23 patch = api.properties.get('patch', True) 23 patch = api.properties.get('patch', True)
24 clobber = True if api.properties.get('clobber') else False 24 clobber = True if api.properties.get('clobber') else False
25 force = True if api.properties.get('force') else False 25 force = True if api.properties.get('force') else False
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 yield api.test('tryjob_v8') + api.properties( 146 yield api.test('tryjob_v8') + api.properties(
147 mastername='tryserver.chromium.linux', 147 mastername='tryserver.chromium.linux',
148 buildername='linux_rel', 148 buildername='linux_rel',
149 slavename='totallyaslave-c4', 149 slavename='totallyaslave-c4',
150 issue=12345, 150 issue=12345,
151 patchset=654321, 151 patchset=654321,
152 patch_url='http://src.chromium.org/foo/bar', 152 patch_url='http://src.chromium.org/foo/bar',
153 patch_project='v8', 153 patch_project='v8',
154 revisions={'src/v8': 'abc'} 154 revisions={'src/v8': 'abc'}
155 ) 155 )
OLDNEW
« no previous file with comments | « recipe_modules/bot_update/api.py ('k') | recipe_modules/bot_update/example.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698