Skip to content

Commit 9b1f28e

Browse files
committed
Use a Jenkins specific quality monitor configuration
1 parent 192a13a commit 9b1f28e

File tree

1 file changed

+14
-18
lines changed

1 file changed

+14
-18
lines changed

.github/workflows/quality-monitor.yml renamed to .github/workflows/quality-monitor-jenkins.yml

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,20 @@ jobs:
5656
"tools": [
5757
{
5858
"id": "junit",
59-
"name": "JUnit Tests",
60-
"pattern": "**/target/*-reports/TEST*.xml"
59+
"name": "Unit Tests",
60+
"pattern": "**/target/surefire-reports/TEST*util*.xml"
61+
},
62+
{
63+
"id": "junit",
64+
"icon": "rocket",
65+
"name": "Integration tests",
66+
"pattern": "**/target/failsafe-reports/TEST*.xml"
67+
},
68+
{
69+
"id": "junit",
70+
"icon": "no_entry",
71+
"name": "Architecture tests",
72+
"pattern": "**/target/surefire-reports/TEST*archunit*.xml"
6173
}
6274
]
6375
},
@@ -85,22 +97,6 @@ jobs:
8597
"id": "spotbugs",
8698
"sourcePath": "src/main/java",
8799
"pattern": "**/target/spotbugsXml.xml"
88-
},
89-
{
90-
"id": "error-prone",
91-
"pattern": "**/maven.log"
92-
}
93-
]
94-
},
95-
{
96-
"name": "API Problems",
97-
"id": "api",
98-
"icon": "no_entry_sign",
99-
"tools": [
100-
{
101-
"id": "revapi",
102-
"sourcePath": "src/main/java",
103-
"pattern": "**/target/revapi-result.json"
104100
}
105101
]
106102
},

0 commit comments

Comments
 (0)