Compare commits
25 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
43d125926a | |
|
|
1b85065bd7 | |
|
|
fc27eb2ae3 | |
|
|
650c14c60c | |
|
|
2501ca7673 | |
|
|
8dea567c94 | |
|
|
d06020e975 | |
|
|
30a077a8bd | |
|
|
71705f04eb | |
|
|
27f369eee3 | |
|
|
2099f21878 | |
|
|
6b904db7b8 | |
|
|
78dfe8039a | |
|
|
ee97f329ec | |
|
|
2ee2a0d73a | |
|
|
eeb8526a02 | |
|
|
43d6bc9cd8 | |
|
|
6d16d0e3f0 | |
|
|
2aff021d9f | |
|
|
1503914972 | |
|
|
bc5e896cf4 | |
|
|
a2656fcc43 | |
|
|
1570efe571 | |
|
|
9c1b272757 | |
|
|
2c402d8d2b |
|
|
@ -15,7 +15,7 @@ pipeline {
|
|||
parameters {
|
||||
string(name: 'FROMDATE', defaultValue: '', description: 'Enter from date in format YYYY-MM-DD e.g. 2021-11-01')
|
||||
string(name: 'TODATE', defaultValue: '', description: 'Enter to date in format YYYY-MM-DD e.g. 2021-11-30')
|
||||
string(name: 'PRESELECT', defaultValue: 'day', description: 'Enter day | week | month (without |) - auto selects the last full day, week or month')
|
||||
string(name: 'PRESELECT', defaultValue: 'month', 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)')
|
||||
|
|
@ -29,8 +29,8 @@ pipeline {
|
|||
// every day at 08:00
|
||||
// cron('0 8 * * *')
|
||||
|
||||
// every monday at 06:00
|
||||
cron('0 5 * * 0-7')
|
||||
// every month on the 1st at 1 am utc
|
||||
cron('0 1 1 * *')
|
||||
|
||||
// parameterizedCron('0 10 * * * %PRESELECT=week;SLICES=tdhy')
|
||||
}
|
||||
|
|
@ -174,7 +174,7 @@ pipeline {
|
|||
emailext subject: "THE OFFICIAL ${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, omt-xibix@list.bmw.com, johann.wildgruber@bmwgroup.com',
|
||||
to: 'Andreas.DB.Danzer@bmwgroup.com, OOC-Support@bmwgroup.com, Michaela.Jaeger@bmw.de, Mohammed.Abadel@bmw.de, omt-xibix@list.bmw.com',
|
||||
// test:
|
||||
// to: 'Daniel.Mikula@nttdata.com, Arnel.Arnautovic@nttdata.com',
|
||||
replyTo: 'coco-apm@bmw.de',
|
||||
|
|
|
|||
Loading…
Reference in New Issue