test - added csv support
parent
ef45ceeb98
commit
4b4f041193
|
|
@ -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 </br></br>${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}"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue