Skip to content

Commit e42fe2f

Browse files
committed
Merge commit 'b6a227ce58c41b5c2a956e793f86b3e59b43eaf1' into HEAD
2 parents c2e938d + b6a227c commit e42fe2f

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

Jenkinsfile

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ pipeline {
142142
}
143143
post {
144144
always {
145-
recordIssues enabledForFailure: true, tools:
146-
[cppLint(),
147-
groovyScript(parserId: 'mathDependencies', pattern: '**/dependencies.log')]
145+
recordIssues(
146+
enabledForFailure: true,
147+
tools: [cppLint(),groovyScript(parserId: 'mathDependencies', pattern: '**/dependencies.log')]
148+
)
148149
deleteDir()
149-
150150
}
151151
}
152152
}
@@ -574,7 +574,10 @@ pipeline {
574574
post {
575575
always {
576576
node("linux") {
577-
recordIssues enabledForFailure: false, tool: clang()
577+
recordIssues(
578+
enabledForFailure: false,
579+
tool: clang()
580+
)
578581
}
579582
}
580583
success {

0 commit comments

Comments
 (0)