Jenkinsfile fixes
This commit is contained in:
parent
34ace7f5d4
commit
9a8f418c7b
|
@ -136,8 +136,12 @@ pipeline {
|
||||||
always {
|
always {
|
||||||
script {
|
script {
|
||||||
if (env.BRANCH_NAME == 'dev') {
|
if (env.BRANCH_NAME == 'dev') {
|
||||||
|
try {
|
||||||
junit '*/junitresults.xml'
|
junit '*/junitresults.xml'
|
||||||
junit 'junitresults.xml'
|
junit 'junitresults.xml'
|
||||||
|
} catch (e) {
|
||||||
|
echo e.toString()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!env.GIT_COMMITTER_EMAIL) return
|
if (!env.GIT_COMMITTER_EMAIL) return
|
||||||
|
|
Loading…
Reference in New Issue