Skip to content

Commit cbe95e7

Browse files
authored
Add missing always block
1 parent f6426fe commit cbe95e7

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

Jenkinsfile

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,15 @@ pipeline {
6868
failure {
6969
step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: '[email protected]', sendToIndividuals: true])
7070
}
71-
logParser ([
72-
projectRulePath: 'parse_rules',
73-
parsingRulesPath: '',
74-
showGraphs: true,
75-
unstableOnWarning: true,
76-
useProjectRule: true,
77-
])
71+
always {
72+
logParser ([
73+
projectRulePath: 'parse_rules',
74+
parsingRulesPath: '',
75+
showGraphs: true,
76+
unstableOnWarning: true,
77+
useProjectRule: true,
78+
])
79+
}
7880
}
7981

8082
// The options directive is for configuration that applies to the whole job.

0 commit comments

Comments
 (0)