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

Unified Diff: scripts/slave/bot_update.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: NBits\ 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/bot_update/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/bot_update.py
diff --git a/scripts/slave/bot_update.py b/scripts/slave/bot_update.py
index 1a2e5974c9b4f7ffd237ee1fb8032cf15b71151d..0972008ce9f5c91533cfd5b42aafa335e7f00520 100755
--- a/scripts/slave/bot_update.py
+++ b/scripts/slave/bot_update.py
@@ -1580,6 +1580,7 @@ def checkout(options, git_slns, specs, buildspec, master,
did_run=True,
root=first_sln,
log_lines=[('patch error', e.output),],
+ patch_apply_return_code=e.code,
patch_root=options.patch_root,
patch_failure=True,
step_text='%s PATCH FAILED' % step_text)
@@ -1680,12 +1681,17 @@ def main():
except Inactive:
# Not active, should count as passing.
pass
- except PatchFailed:
+ except PatchFailed as e:
emit_flag(options.flag_file)
# Return a specific non-zero exit code for patch failure (because it is
# a failure), but make it different than other failures to distinguish
# between infra failures (independent from patch author), and patch
- # failures (that patch author can fix).
+ # failures (that patch author can fix). However, PatchFailure due to
+ # download patch failure is still an infra problem.
+ if e.code == 3:
+ # Patch download problem.
+ return 87
+ # Genuine patch problem.
return 88
except Exception:
# Unexpected failure.
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/bot_update/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698