- ${p.taskName}
+ ${p.taskName}
|
-
- FAILED
+
+ FAILED
-
+
PASSED
@@ -78,7 +78,7 @@
|
- ${p.description}
+ ${p.taskDescription}
|
${p.taskDuration} |
From f2908d05bb52949e13bdca3d684aa0c0d39a4e4d Mon Sep 17 00:00:00 2001
From: Nikhil Bhoski <47204011+nbhoski@users.noreply.github.com>
Date: Wed, 31 Jan 2024 13:23:33 +0530
Subject: [PATCH 15/20] Fixed issue 281 (#284)
---
src/main/resources/+ciplugins/+jenkins/BuildReportPlugin.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/resources/+ciplugins/+jenkins/BuildReportPlugin.m b/src/main/resources/+ciplugins/+jenkins/BuildReportPlugin.m
index 5825b614..ccdfbd94 100644
--- a/src/main/resources/+ciplugins/+jenkins/BuildReportPlugin.m
+++ b/src/main/resources/+ciplugins/+jenkins/BuildReportPlugin.m
@@ -6,7 +6,7 @@
function runTaskGraph(plugin, pluginData)
runTaskGraph@matlab.buildtool.plugins.BuildRunnerPlugin(plugin, pluginData);
- fID = fopen('.matlab/buildArtifact.json', 'w');
+ fID = fopen(fullfile(getenv("WORKSPACE"),'.matlab/buildArtifact.json'), 'w');
taskDetails = struct();
for idx = 1:numel(pluginData.TaskResults)
taskDetails(idx).name = pluginData.TaskResults(idx).Name;
From c04b1dd77ab650e46c7f8a832d1cf124306c5b18 Mon Sep 17 00:00:00 2001
From: Nikhil Bhoski <47204011+nbhoski@users.noreply.github.com>
Date: Mon, 5 Feb 2024 10:37:49 +0530
Subject: [PATCH 16/20] Update the maven release (#286)
* [maven-release-plugin] prepare release matlab-2.12.0
* [maven-release-plugin] prepare for next development iteration
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index dfd69040..83868f62 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,7 +8,7 @@
matlab
- 2.11.2-SNAPSHOT
+ 2.12.1-SNAPSHOT
hpi
From 41a0fa81726f5a8bc3104bba092b634685fcddff Mon Sep 17 00:00:00 2001
From: Nikhil Bhoski <47204011+nbhoski@users.noreply.github.com>
Date: Tue, 6 Feb 2024 17:13:17 +0530
Subject: [PATCH 17/20] Added summary page warnning
---
.../com/mathworks/ci/BuildArtifactAction/summary.jelly | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly b/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly
index d98e839f..26113f2e 100644
--- a/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly
+++ b/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly
@@ -7,6 +7,11 @@
xmlns:i="jelly:fmt">
MATLAB Build Results
+
+
+ Zero task indicates either none of the task ran from buildfile or MATLAB version does not support the feature
+
+
This build report includes ${it.totalCount} tasks.
Number of failed tasks: ${it.failCount}
From 353a35f0f56edf1bdf8bfcf6f46f72327bdd9984 Mon Sep 17 00:00:00 2001
From: Nikhil Bhoski <47204011+nbhoski@users.noreply.github.com>
Date: Thu, 8 Feb 2024 11:00:17 +0530
Subject: [PATCH 18/20] Updated summary warnning
---
.../com/mathworks/ci/BuildArtifactAction/summary.jelly | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly b/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly
index 26113f2e..22549082 100644
--- a/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly
+++ b/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly
@@ -9,7 +9,7 @@
MATLAB Build Results
- Zero task indicates either none of the task ran from buildfile or MATLAB version does not support the feature
+ Make sure that you are using MATLAB R2022b or later and that your build file contains no errors.
This build report includes ${it.totalCount} tasks.
From 6e3869c18740dfc8ba116cb239de78f8f813b4c2 Mon Sep 17 00:00:00 2001
From: Nikhil Bhoski <47204011+nbhoski@users.noreply.github.com>
Date: Mon, 19 Feb 2024 14:31:59 +0530
Subject: [PATCH 19/20] Fixed Summary page issues
---
.../mathworks/ci/BuildArtifactAction/summary.jelly | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly b/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly
index 22549082..20599d5a 100644
--- a/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly
+++ b/src/main/resources/com/mathworks/ci/BuildArtifactAction/summary.jelly
@@ -6,16 +6,11 @@
xmlns:f="/lib/form"
xmlns:i="jelly:fmt">
- MATLAB Build Results
-
-
- Make sure that you are using MATLAB R2022b or later and that your build file contains no errors.
-
-
- This build report includes ${it.totalCount} tasks.
-
+ MATLAB Build Result
+ Total task ran: ${it.totalCount}
+
+
\ No newline at end of file
From f70394db46aecede4d5d91f5a0ce5ce2551fe97b Mon Sep 17 00:00:00 2001
From: Nikhil Bhoski <47204011+nbhoski@users.noreply.github.com>
Date: Tue, 20 Feb 2024 11:08:45 +0530
Subject: [PATCH 20/20] Fixed issue 292
---
src/main/java/com/mathworks/ci/BuildTargetNote.java | 1 +
.../com/mathworks/ci/BuildArtifactAction/index.jelly | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/mathworks/ci/BuildTargetNote.java b/src/main/java/com/mathworks/ci/BuildTargetNote.java
index 0367df4a..51ec6137 100644
--- a/src/main/java/com/mathworks/ci/BuildTargetNote.java
+++ b/src/main/java/com/mathworks/ci/BuildTargetNote.java
@@ -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, "", "");
return null;
diff --git a/src/main/resources/com/mathworks/ci/BuildArtifactAction/index.jelly b/src/main/resources/com/mathworks/ci/BuildArtifactAction/index.jelly
index 9942cdfc..c8cf845c 100644
--- a/src/main/resources/com/mathworks/ci/BuildArtifactAction/index.jelly
+++ b/src/main/resources/com/mathworks/ci/BuildArtifactAction/index.jelly
@@ -59,12 +59,12 @@
- ${p.taskName}
+ ${p.taskName}
|
- FAILED
+ FAILED
|