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

Side by Side Diff: scripts/slave/recipe_modules/bot_update/api.py

Issue 1382203002: bot_update (+recipe_module): treat patch download as infra failure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fixes + coverage. Created 5 years, 2 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
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 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 # Add suffixes to the step name, if specified. 202 # Add suffixes to the step name, if specified.
203 name = 'bot_update' 203 name = 'bot_update'
204 if not patch: 204 if not patch:
205 name += ' (without patch)' 205 name += ' (without patch)'
206 if suffix: 206 if suffix:
207 name += ' - %s' % suffix 207 name += ' - %s' % suffix
208 208
209 # Ah hah! Now that everything is in place, lets run bot_update! 209 # Ah hah! Now that everything is in place, lets run bot_update!
210 try: 210 try:
211 # 88 is the 'patch failure' return code. 211 # 88 is the 'patch failure' return code.
212 self(name, cmd, step_test_data=step_test_data, ok_ret=(0, 88), **kwargs) 212 self(name, cmd, step_test_data=step_test_data, ok_ret=(0, 88), **kwargs)
Sergiy Byelozyorov 2015/10/02 12:44:35 add 89 here
tandrii(chromium) 2015/10/02 12:50:36 Done.
213 finally: 213 finally:
214 step_result = self.m.step.active_result 214 step_result = self.m.step.active_result
215 self._properties = step_result.json.output.get('properties', {}) 215 self._properties = step_result.json.output.get('properties', {})
216 216
217 if update_presentation: 217 if update_presentation:
218 # Set properties such as got_revision. 218 # Set properties such as got_revision.
219 for prop_name, prop_value in self.properties.iteritems(): 219 for prop_name, prop_value in self.properties.iteritems():
220 step_result.presentation.properties[prop_name] = prop_value 220 step_result.presentation.properties[prop_name] = prop_value
221 # Add helpful step description in the step UI. 221 # Add helpful step description in the step UI.
222 if 'step_text' in step_result.json.output: 222 if 'step_text' in step_result.json.output:
223 step_text = step_result.json.output['step_text'] 223 step_text = step_result.json.output['step_text']
224 step_result.presentation.step_text = step_text 224 step_result.presentation.step_text = step_text
225 # Add log line output. 225 # Add log line output.
226 if 'log_lines' in step_result.json.output: 226 if 'log_lines' in step_result.json.output:
227 for log_name, log_lines in step_result.json.output['log_lines']: 227 for log_name, log_lines in step_result.json.output['log_lines']:
228 step_result.presentation.logs[log_name] = log_lines.splitlines() 228 step_result.presentation.logs[log_name] = log_lines.splitlines()
229 229
230 # Set the "checkout" path for the main solution. 230 # Set the "checkout" path for the main solution.
231 # This is used by the Chromium module to figure out where to look for 231 # This is used by the Chromium module to figure out where to look for
232 # the checkout. 232 # the checkout.
233 # If there is a patch failure, emit another step that said things failed. 233 # If there is a patch failure, emit another step that said things failed.
234 if step_result.json.output.get('patch_failure'): 234 if step_result.json.output.get('patch_failure'):
235 # TODO(phajdan.jr): Differentiate between failure to download the patch 235 return_code = step_result.json.output.get('return_code')
236 # and failure to apply it. The first is an infra failure, the latter 236 if return_code == 3:
237 # a definite patch failure. 237 # This is download failure, hence an infra failure.
238 self.m.tryserver.set_patch_failure_tryjob_result() 238 self.m.step.InfraFailure('Failed to download the patch')
239 else:
240 # This is actual patch failure.
241 self.m.tryserver.set_patch_failure_tryjob_result()
239 self.m.python.failing_step( 242 self.m.python.failing_step(
240 'Patch failure', 'Check the bot_update step for details') 243 'Patch failure', 'Check the bot_update step for details')
241 244
242 # bot_update actually just sets root to be the folder name of the 245 # bot_update actually just sets root to be the folder name of the
243 # first solution. 246 # first solution.
244 if step_result.json.output['did_run']: 247 if step_result.json.output['did_run']:
245 co_root = step_result.json.output['root'] 248 co_root = step_result.json.output['root']
246 cwd = kwargs.get('cwd', self.m.path['slave_build']) 249 cwd = kwargs.get('cwd', self.m.path['slave_build'])
247 if 'checkout' not in self.m.path: 250 if 'checkout' not in self.m.path:
248 self.m.path['checkout'] = cwd.join(*co_root.split(self.m.path.sep)) 251 self.m.path['checkout'] = cwd.join(*co_root.split(self.m.path.sep))
249 252
250 return step_result 253 return step_result
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698