aboutsummaryrefslogtreecommitdiffstats
path: root/yocto_console_view/src/module/main.module.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'yocto_console_view/src/module/main.module.coffee')
-rw-r--r--yocto_console_view/src/module/main.module.coffee6
1 files changed, 6 insertions, 0 deletions
diff --git a/yocto_console_view/src/module/main.module.coffee b/yocto_console_view/src/module/main.module.coffee
index 41ea234..7c76c3a 100644
--- a/yocto_console_view/src/module/main.module.coffee
+++ b/yocto_console_view/src/module/main.module.coffee
@@ -316,6 +316,12 @@ class Console extends Controller
change.caption = @branchmapping[build.buildid]
change.revlink = "http://git.yoctoproject.org/cgit.cgi/poky/commit/?id=" + rev
change.errorlink = "http://errors.yoctoproject.org/Errors/Latest/?filter=" + rev + "&type=commit&limit=150"
+ bid = build.buildid
+ if buildset? and buildset.parent_buildid?
+ bid = buildset.parent_buildid
+ if (change.bid? and bid > change.bid) or !change.bid?
+ change.bid = bid
+ change.loglink = "https://wiki.yoctoproject.org/wiki/BuildLog#" + bid
if build.properties?.reason?
change.reason = build.properties.reason[0]
else