aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Laine <jeremy.laine@m4x.org>2008-08-05 11:21:56 +0000
committerJeremy Laine <jeremy.laine@m4x.org>2008-08-05 11:21:56 +0000
commite239006ebf2c218dc06a02e733cd27bda5535a89 (patch)
treeeda7d766b168dc750285c58654ddc012a374a17e
parentc4c1bcec601b7606971ac8b92a7d410742f038ec (diff)
downloadopenembedded-e239006ebf2c218dc06a02e733cd27bda5535a89.tar.gz
oestats-client.bbclass: display information URL for failed builds/tasks (Closes: #4475)
-rw-r--r--classes/oestats-client.bbclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/classes/oestats-client.bbclass b/classes/oestats-client.bbclass
index 968aa42c3b..94fdbf41c4 100644
--- a/classes/oestats-client.bbclass
+++ b/classes/oestats-client.bbclass
@@ -100,6 +100,8 @@ def oestats_stop(server, d, failures):
response = oestats_send(server, "/builds/%s/" % id, {
'status': status,
})
+ if status == 'Failed':
+ bb.note("oestats: build failed, see http://%s%s" % (server,response))
except:
bb.note("oestats: error stopping build")
@@ -124,7 +126,6 @@ def oestats_task(server, d, task, status):
logs = glob.glob("%s/log.%s.*" % (bb.data.getVar('T', d, True), task))
if len(logs) > 0:
log = logs[0]
- bb.note("oestats: sending log file : %s" % log)
files['log'] = {
'filename': 'log.txt',
'content': file(log).read(),
@@ -149,6 +150,8 @@ def oestats_task(server, d, task, status):
# send report
try:
response = oestats_send(server, "/tasks/", vars, files)
+ if status == 'Failed':
+ bb.note("oestats: task failed, see http://%s%s" % (server, response))
except:
bb.note("oestats: error sending task, disabling stats")
oestats_setid(d, "")