<%
if (healthReports != null) {
%>
Health Report
W |
Description |
Score |
<%
for (hudson.model.HealthReport healthReport : healthReports) {
__url = healthReport.getIconUrl(healthIconSize)
%>
|
${healthReport.description} |
${healthReport.score} |
<%
}
%>
<%
}
%>
<%
if (build.changeSet != null) {
boolean hadChanges = false
hudson.scm.ChangeLogSet cs = build.getChangeSet()
%>
Changes
<%
for (hudson.scm.ChangeLogSet.Entry entry : cs) {
hadChanges = true
%>
${entry.msgAnnotated}
by ${entry.author}
<%
for (hudson.scm.ChangeLogSet.AffectedFile p : entry.affectedFiles) {
%>
${p.editType.name} |
${p.path}
|
<%
}
%>
<%
}
if (hadChanges == false) {
%>
No Changes
<%
}
}
%>
<%
for( i = 0; i < axes.size(); i++){
%>
Failed Builds
<%
for (hudson.matrix.MatrixRun run : runs) {
if (run.getResult() != Result.SUCCESS) {
String toolchain_val
run_configuration = run.getParent()
url = run.getUrl()
configuration_combination = run_configuration.getCombination()
%>
<%
}
}
}
%>