OLD | NEW |
---|---|
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 | 5 |
6 """Recipe module to ensure a checkout is consistant on a bot.""" | 6 """Recipe module to ensure a checkout is consistant on a bot.""" |
7 | 7 |
8 from recipe_engine import recipe_api | 8 from recipe_engine import recipe_api |
9 | 9 |
10 | 10 |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
136 flags = [ | 136 flags = [ |
137 # 1. Do we want to run? (master/builder/slave). | 137 # 1. Do we want to run? (master/builder/slave). |
138 ['--master', master], | 138 ['--master', master], |
139 ['--builder', builder], | 139 ['--builder', builder], |
140 ['--slave', slave], | 140 ['--slave', slave], |
141 | 141 |
142 # 2. What do we want to check out (spec/root/rev/rev_map). | 142 # 2. What do we want to check out (spec/root/rev/rev_map). |
143 ['--spec', spec_string], | 143 ['--spec', spec_string], |
144 ['--root', root], | 144 ['--root', root], |
145 ['--revision_mapping_file', self.m.json.input(rev_map)], | 145 ['--revision_mapping_file', self.m.json.input(rev_map)], |
146 ['--git-cache-dir', self.m.path['git_cache']], | |
147 | 146 |
148 # 3. How to find the patch, if any (issue/patchset/patch_url). | 147 # 3. How to find the patch, if any (issue/patchset/patch_url). |
149 ['--issue', issue], | 148 ['--issue', issue], |
150 ['--patchset', patchset], | 149 ['--patchset', patchset], |
151 ['--patch_url', patch_url], | 150 ['--patch_url', patch_url], |
152 ['--rietveld_server', self.m.properties.get('rietveld')], | 151 ['--rietveld_server', self.m.properties.get('rietveld')], |
153 ['--gerrit_repo', gerrit_repo], | 152 ['--gerrit_repo', gerrit_repo], |
154 ['--gerrit_ref', gerrit_ref], | 153 ['--gerrit_ref', gerrit_ref], |
155 ['--apply_issue_email_file', email_file], | 154 ['--apply_issue_email_file', email_file], |
156 ['--apply_issue_key_file', key_file], | 155 ['--apply_issue_key_file', key_file], |
157 | 156 |
158 # 4. Hookups to JSON output back into recipes. | 157 # 4. Hookups to JSON output back into recipes. |
159 ['--output_json', self.m.json.output()],] | 158 ['--output_json', self.m.json.output()],] |
160 | 159 |
160 # Honor gclient module's setting for whether to use a git cache. | |
161 # See chromium_no_git_cache config in gclient/config.py. | |
162 if self.m.gclient.c.cache_dir: | |
163 flags.append(['--git-cache-dir', self.m.gclient.c.cache_dir]) | |
martiniss
2016/03/03 21:10:23
instead of 'self.m.gclient.c.cache_dir', use 'cfg.
| |
161 | 164 |
162 # Collect all fixed revisions to simulate them in the json output. | 165 # Collect all fixed revisions to simulate them in the json output. |
163 # Fixed revision are the explicit input revisions of bot_update.py, i.e. | 166 # Fixed revision are the explicit input revisions of bot_update.py, i.e. |
164 # every command line parameter "--revision name@value". | 167 # every command line parameter "--revision name@value". |
165 fixed_revisions = {} | 168 fixed_revisions = {} |
166 | 169 |
167 revisions = {} | 170 revisions = {} |
168 for solution in cfg.solutions: | 171 for solution in cfg.solutions: |
169 if solution.revision: | 172 if solution.revision: |
170 revisions[solution.name] = solution.revision | 173 revisions[solution.name] = solution.revision |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
270 | 273 |
271 # bot_update actually just sets root to be the folder name of the | 274 # bot_update actually just sets root to be the folder name of the |
272 # first solution. | 275 # first solution. |
273 if step_result.json.output['did_run']: | 276 if step_result.json.output['did_run']: |
274 co_root = step_result.json.output['root'] | 277 co_root = step_result.json.output['root'] |
275 cwd = kwargs.get('cwd', self.m.path['slave_build']) | 278 cwd = kwargs.get('cwd', self.m.path['slave_build']) |
276 if 'checkout' not in self.m.path: | 279 if 'checkout' not in self.m.path: |
277 self.m.path['checkout'] = cwd.join(*co_root.split(self.m.path.sep)) | 280 self.m.path['checkout'] = cwd.join(*co_root.split(self.m.path.sep)) |
278 | 281 |
279 return step_result | 282 return step_result |
OLD | NEW |