crusade-tracker/config/_notifications/email/build_probably_hanging.ftl.dist

34 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2021-01-18 20:27:50 +00:00
<#-- Uses FreeMarker template syntax, template guide can be found at http://freemarker.org/docs/dgui.html -->
<#import "common.ftl" as common>
<#import "responsibility.ftl" as resp>
<#global subject>[<@common.subjMarker/>, PROBABLY_HANGING] Build ${project.fullName} / ${buildType.name} <@common.short_build_info build/></#global>
<#global body>Build ${project.fullName} / ${buildType.name} <@common.short_build_info build/> is probably hanging ${var.buildShortStatusDescription}.
Estimated duration: ${var.buildDurationEstimate}, overtime: ${var.buildDurationOvertime}
Last message was received on: ${var.buildLastMessageTimestamp} (${var.buildTimeSinceLastMessage} ago)
<@resp.buildTypeInvestigation buildType false/>
<#if !build.agentLessBuild>Agent: ${agentName}</#if>
Build results: ${link.buildResultsLink}
${var.buildChanges}
<@common.footer/></#global>
<#global bodyHtml>
<div>
<div>
Build <b>${project.fullName?html} / ${buildType.name?html}</b> <a href='${link.buildResultsLink}'><@common.short_build_info build/></a> is probably hanging
${var.buildShortStatusDescription}
</div>
<div>Estimated duration: ${var.buildDurationEstimate}, overtime: ${var.buildDurationOvertime}</div>
<div>Last message was received on: ${var.buildLastMessageTimestamp} (${var.buildTimeSinceLastMessage} ago)</div>
<div><@resp.buildTypeInvestigation buildType false/></div>
<@common.build_agent build/>
<@common.build_comment build/>
<br>
<@common.build_changes var.changesBean/>
<@common.footerHtml/>
</div>
</#global>