Skip to content

Commit

Permalink
Fixed issue 292
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed Feb 20, 2024
1 parent 6e3869c commit f70394d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/mathworks/ci/BuildTargetNote.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public BuildTargetNote() {
public ConsoleAnnotator annotate(Object context, MarkupText text, int charPos) {
MarkupText.SubText t = text.findToken(Pattern.compile("MATLAB-Build-"));
String taskName = text.subText(13, text.length()-2).getText();
taskName = taskName.replace("]","").trim();
if (t != null)
t.addMarkup(0, t.length()-1, "<a id= matlab" + taskName + " name=matlab" + taskName + ">", "</a>");
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@
<j:forEach var="p" items="${it.buildArtifact}" varStatus="status">
<tr>
<td class="pane" align="left">
<a href="../console#matlab-${p.taskName}]">${p.taskName}</a>
<a href="../console#matlab-${p.taskName}">${p.taskName}</a>
</td>
<td class="pane" style="width:9em">
<span class="${pst.cssClass}">
<j:if test="${p.taskFailed != false}">
<a href="../console#matlab-${p.taskName}]"><font color="#EF2929"> FAILED </font> </a>
<a href="../console#matlab-${p.taskName}"><font color="#EF2929"> FAILED </font> </a>
</j:if>
<j:if test="${p.taskFailed == false}">
<j:if test="${p.taskSkipped == false}">
Expand Down

0 comments on commit f70394d

Please sign in to comment.