Skip to content

Commit c660e78

Browse files
authored
Merge pull request #61 from ISISComputingGroup/zsoltkebel-patch-1
Add missing always block
2 parents f6426fe + cbe95e7 commit c660e78

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)