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

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: comment 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 201
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 # 87 and 88 are the 'patch failure' codes for patch download and patch
212 self(name, cmd, step_test_data=step_test_data, ok_ret=(0, 88), **kwargs) 212 # apply, respectively. We don't actually use the error codes, and instead
213 # rely on emitted json to determine cause of failure.
214 self(name, cmd, step_test_data=step_test_data,
215 ok_ret=(0, 87, 88), **kwargs)
213 finally: 216 finally:
214 step_result = self.m.step.active_result 217 step_result = self.m.step.active_result
215 self._properties = step_result.json.output.get('properties', {}) 218 self._properties = step_result.json.output.get('properties', {})
216 219
217 if update_presentation: 220 if update_presentation:
218 # Set properties such as got_revision. 221 # Set properties such as got_revision.
219 for prop_name, prop_value in self.properties.iteritems(): 222 for prop_name, prop_value in self.properties.iteritems():
220 step_result.presentation.properties[prop_name] = prop_value 223 step_result.presentation.properties[prop_name] = prop_value
221 # Add helpful step description in the step UI. 224 # Add helpful step description in the step UI.
222 if 'step_text' in step_result.json.output: 225 if 'step_text' in step_result.json.output:
223 step_text = step_result.json.output['step_text'] 226 step_text = step_result.json.output['step_text']
224 step_result.presentation.step_text = step_text 227 step_result.presentation.step_text = step_text
225 # Add log line output. 228 # Add log line output.
226 if 'log_lines' in step_result.json.output: 229 if 'log_lines' in step_result.json.output:
227 for log_name, log_lines in step_result.json.output['log_lines']: 230 for log_name, log_lines in step_result.json.output['log_lines']:
228 step_result.presentation.logs[log_name] = log_lines.splitlines() 231 step_result.presentation.logs[log_name] = log_lines.splitlines()
229 232
230 # Set the "checkout" path for the main solution. 233 # Set the "checkout" path for the main solution.
231 # This is used by the Chromium module to figure out where to look for 234 # This is used by the Chromium module to figure out where to look for
232 # the checkout. 235 # the checkout.
233 # If there is a patch failure, emit another step that said things failed. 236 # If there is a patch failure, emit another step that said things failed.
234 if step_result.json.output.get('patch_failure'): 237 if step_result.json.output.get('patch_failure'):
235 # TODO(phajdan.jr): Differentiate between failure to download the patch 238 return_code = step_result.json.output.get('patch_apply_return_code')
236 # and failure to apply it. The first is an infra failure, the latter 239 if return_code == 3:
237 # a definite patch failure. 240 # This is download failure, hence an infra failure.
238 self.m.tryserver.set_patch_failure_tryjob_result() 241 # Sadly, python.failing_step doesn't support kwargs.
239 self.m.python.failing_step( 242 self.m.python.inline(
240 'Patch failure', 'Check the bot_update step for details') 243 'Patch failure',
244 ('import sys;'
245 'print "Check the bot_update step for details";'
Sergiy Byelozyorov 2015/10/02 13:53:20 please change the message to explain that download
tandrii(chromium) 2015/10/02 13:57:15 Done.
246 'sys.exit(1)'),
247 infra_step=True,
248 step_test_data=lambda: self.m.raw_io.test_api.output(
249 "Check the bot_update step for details",
250 retcode=1)
251 )
252 else:
253 # This is actual patch failure.
254 self.m.tryserver.set_patch_failure_tryjob_result()
255 self.m.python.failing_step(
256 'Patch failure', 'Check the bot_update step for details')
241 257
242 # bot_update actually just sets root to be the folder name of the 258 # bot_update actually just sets root to be the folder name of the
243 # first solution. 259 # first solution.
244 if step_result.json.output['did_run']: 260 if step_result.json.output['did_run']:
245 co_root = step_result.json.output['root'] 261 co_root = step_result.json.output['root']
246 cwd = kwargs.get('cwd', self.m.path['slave_build']) 262 cwd = kwargs.get('cwd', self.m.path['slave_build'])
247 if 'checkout' not in self.m.path: 263 if 'checkout' not in self.m.path:
248 self.m.path['checkout'] = cwd.join(*co_root.split(self.m.path.sep)) 264 self.m.path['checkout'] = cwd.join(*co_root.split(self.m.path.sep))
249 265
250 return step_result 266 return step_result
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/bot_update/__init__.py ('k') | scripts/slave/recipe_modules/bot_update/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698