csv format test

daily
QXZ3NHY 2023-06-20 09:59:07 +02:00
parent c461dcec0a
commit eed3311355
1 changed files with 8 additions and 0 deletions

8
Jenkinsfile vendored
View File

@ -138,6 +138,14 @@ pipeline {
SCRIPT_PARAMETER = SCRIPT_PARAMETER + " -p " + PRESELECT.toString()
}
if (FORMATS.isEmpty()) {
currentBuild.result = 'ABORTED'
error('Aborting due to missing report format parameter')
return
} else {
SCRIPT_PARAMETER = SCRIPT_PARAMETER + " -o " + FORMATS.toString()
}
echo "${SCRIPT_PARAMETER}"
sh "python3.8 createReport.py ${SCRIPT_PARAMETER}"
sh "python3.8 summary.py"