Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 70f7d48

Browse files
committed
Fixed code haus error & changed default maven goal to verify. updated
README file screen shot.
1 parent 0856708 commit 70f7d48

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ The Jenkins plugin for MATLAB can be used inside of "Multi-configuration" (matri
9999

100100
5) Select "Custom" option from "Test mode" drop-down and replace User-defined axis variable for custom command appropriately.
101101

102-
![image](https://user-images.githubusercontent.com/47204011/62518329-f3dbca80-b846-11e9-911f-82dfc3fcdd32.png)
102+
![image](https://user-images.githubusercontent.com/47204011/62686681-cd529680-b9e2-11e9-82c1-c211f1740be4.png)
103103

104-
4) Save and run the build.
104+
6) Save and run the build.
105105

106106

107107
Note: Axis variables can be replaced in either "$VAR" or "${VAR}" formats. Do not use complete MATLAB root path as axis values. Multi-configuration project creates separate workspace folder for each User-defined axis values with same name, and file separators in complete path will cause Jenkins build to fail as folder creation fails.

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ steps:
2626
publishJUnitResults: true
2727
testResultsFiles: '**/surefire-reports/TEST-*.xml'
2828
codeCoverageToolOption: 'cobertura'
29-
goals: 'package'
29+
goals: 'verify'
3030
displayName: 'Build $(imageName)'
3131

src/main/java/com/mathworks/ci/MatlabBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public TestRunTypeList getTestRunTypeList() {
9090
}
9191

9292
private String getLocalMatlab() {
93-
return this.env == null ? getLocalMatlab(): this.env.expand(getMatlabRoot());
93+
return this.env == null ? getMatlabRoot(): this.env.expand(getMatlabRoot());
9494
}
9595

9696
private String getCustomMatlabCommand() {

0 commit comments

Comments
 (0)