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

Unified Diff: bin/cbuildbot.py

Issue 5595004: Have upload_prebuilts respect the debug flag. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Created 10 years 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/cbuildbot.py
diff --git a/bin/cbuildbot.py b/bin/cbuildbot.py
index c75e467cc7fcf9d678734a75887a02ac9b9126cb..2e86ae417356afa7548e70b67a92dadb01299759 100755
--- a/bin/cbuildbot.py
+++ b/bin/cbuildbot.py
@@ -701,8 +701,9 @@ def main():
if buildconfig['master']:
# Master bot needs to check if the other slaves completed.
if cbuildbot_comm.HaveSlavesCompleted(config):
- _UploadPrebuilts(buildroot, board, buildconfig['rev_overlays'],
- [new_binhost])
+ if not options.debug:
+ _UploadPrebuilts(buildroot, board, buildconfig['rev_overlays'],
+ [new_binhost])
_UprevPush(buildroot, tracking_branch, buildconfig['board'],
push_overlays, options.debug)
else:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698