Print exception on the job report.

This commit is contained in:
Manuele Simi 2019-12-09 23:06:07 -05:00
parent 539b8aaa33
commit 9a4525381a
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -271,6 +271,9 @@ def parseJobs(job_file) {
return
jobs["${columns[0]}"] = columns[1]
}
} catch(Exception e) {println "Previous job report not available"}
} catch(Exception e) {
println "Previous job report not available"
e.printStackTrace()
}
jobs;
}