diff --git a/Jenkinsfile b/Jenkinsfile index 754b7a288..9ae65863d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -136,8 +136,12 @@ pipeline { always { script { if (env.BRANCH_NAME == 'dev') { - junit '*/junitresults.xml' - junit 'junitresults.xml' + try { + junit '*/junitresults.xml' + junit 'junitresults.xml' + } catch (e) { + echo e.toString() + } } if (!env.GIT_COMMITTER_EMAIL) return