aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar Ravi Mistry <rmistry@google.com>2018-02-05 13:37:29 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-02-05 19:09:26 +0000
commit85c8b493ebdf01d587773bbb7d243a3ebec41691 (patch)
treea7d4099b70a99c8f30086e5001568c834631b40f /infra
parent73e391db8a17b6f448d77975b540eef1a26bdda8 (diff)
Improve output of the Android Framework compile bot
NoTry: true Bug: skia:7469 Change-Id: I8c184968c3a04c5fbf00d641de715a3f7b98e0be Reviewed-on: https://skia-review.googlesource.com/103463 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Ravi Mistry <rmistry@google.com>
Diffstat (limited to 'infra')
-rw-r--r--infra/bots/android_compile/trigger_wait_ac_task.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/infra/bots/android_compile/trigger_wait_ac_task.py b/infra/bots/android_compile/trigger_wait_ac_task.py
index 4abb67146e..d620b7f218 100644
--- a/infra/bots/android_compile/trigger_wait_ac_task.py
+++ b/infra/bots/android_compile/trigger_wait_ac_task.py
@@ -122,22 +122,25 @@ def TriggerAndWait(options):
if ret["done"]:
print
+ print
if ret["withpatch_success"]:
print 'Your run was successfully completed.'
+ print
print 'With patch logs are here: %s' % ret["withpatch_log"]
print
return 0
elif ret["nopatch_success"]:
raise AndroidCompileException('The build with the patch failed and the '
'build without the patch succeeded. This means that the patch '
- 'causes Android to fail compilation.\n'
- 'With patch logs are here: %s\n'
- 'No patch logs are here: %s' % (
+ 'causes Android to fail compilation.\n\n'
+ 'With patch logs are here: %s\n\n'
+ 'No patch logs are here: %s\n\n' % (
ret["withpatch_log"], ret["nopatch_log"]))
else:
print ('Both with patch and no patch builds failed. This means that the'
' Android tree is currently broken. Marking this bot as '
'successful')
+ print
print 'With patch logs are here: %s' % ret["WithPatchLog"]
print 'No patch logs are here: %s' % ret["NoPatchLog"]
return 0