From 4b4f041193093fa14db486d55e8772d1f1ca2a58 Mon Sep 17 00:00:00 2001 From: QXZ3NHY Date: Tue, 20 Jun 2023 09:45:32 +0200 Subject: [PATCH] test - added csv support --- Jenkinsfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5c4171c..d29e95b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,6 +18,7 @@ pipeline { string(name: 'PRESELECT', defaultValue: 'day', description: 'Enter day | week | month (without |) - auto selects the last full day, week or month') string(name: 'SLICES', defaultValue: 'dt', description: 'Enter h | d | t | y (without spaces or |) - writes the slices hourly, daily, total or year to date into excel given in any order') string(name: 'KPI_EXTENSION', defaultValue: 'true', description: 'Enter true or false if the extension should be executed') + string(name: 'FORMATS', defaultValue: 'xc', description: 'Enter x | c (without spaces or |) - creates xlsx (x) and/or CSV (c) file - the csv file will include a reduced list (depending on target report)') } // here comes the trigger according to crontabs - jenkins is in UTC @@ -164,11 +165,11 @@ pipeline { emailext subject: "NEW ${env.JOB_NAME}", mimeType: 'text/html', body: "Please find the output of the daily QM-Report attached

${summary}", - to: 'ermis.wieger@nttdata.com, Andreas.DB.Danzer@bmwgroup.com, OOC-Support@bmwgroup.com, michaela.jaeger@bmw.de, thilo.bindel@bmwgroup.com, Mohammed.Abadel@bmw.de, jan.sc.schaefer@bmw.de, ops-xibix@list.bmw.com, omo-xibix@list.bmw.com', + // to: 'ermis.wieger@nttdata.com, Andreas.DB.Danzer@bmwgroup.com, OOC-Support@bmwgroup.com, michaela.jaeger@bmw.de, thilo.bindel@bmwgroup.com, Mohammed.Abadel@bmw.de, jan.sc.schaefer@bmw.de, ops-xibix@list.bmw.com, omo-xibix@list.bmw.com', // test: - // to: 'Daniel.Mikula@nttdata.com, Andreas.DB.Danzer@bmwgroup.com', + to: 'Daniel.Mikula@nttdata.com, Arnel.Arnautovic@nttdata.com', replyTo: 'coco-apm@bmw.de', - attachmentsPattern: '*.xlsx' + attachmentsPattern: '*.xlsx, *.csv' } catch ( mailExc ) { echo "Sending Email Failed: ${mailExc}" }