Compare commits
28 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
fb5eec9317 | |
|
|
4b971989a6 | |
|
|
be24c40b5b | |
|
|
8c6f0298c0 | |
|
|
a9fff61fa9 | |
|
|
c7ca2d7f93 | |
|
|
42c7907ec7 | |
|
|
cc7d608852 | |
|
|
719cf8e673 | |
|
|
b6320b8417 | |
|
|
5a7543465d | |
|
|
f4d5acbb87 | |
|
|
b156bbc6aa | |
|
|
ebca1c9d05 | |
|
|
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: 'week', 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,7 @@ pipeline {
|
|||
// every day at 08:00
|
||||
// cron('0 8 * * *')
|
||||
|
||||
// every monday at 06:00
|
||||
cron('0 5 * * 0-7')
|
||||
cron('0 4 * * 1')
|
||||
|
||||
// parameterizedCron('0 10 * * * %PRESELECT=week;SLICES=tdhy')
|
||||
}
|
||||
|
|
@ -192,7 +191,7 @@ pipeline {
|
|||
failure {
|
||||
emailext subject: "THE OFFICIAL ${env.JOB_NAME} build ${env.BUILD_ID} failed",
|
||||
body: "QM report failed, see logs for details: ${env.BUILD_URL}",
|
||||
to: 'Arnel.Arnautovic@nttdata.com, Daniel.Mikula@nttdata.com, omt-xibix@list.bmw.com'
|
||||
to: 'Arnel.Arnautovic@nttdata.com, Daniel.Mikula@nttdata.com, ops-xibix@list.bmw.com, omt-xibix@list.bmw.com'
|
||||
// to post to the teams channel "0 - APM Service Desk" just uncomment the following command:
|
||||
// office365ConnectorSend webhookUrl: "https://bmwgroup.webhook.office.com/webhookb2/483edc00-c925-4672-8088-8299a0139fca@ce849bab-cc1c-465b-b62e-18f07c9ac198/JenkinsCI/9aca6923685b40f794134853fcbe88f1/ff31bcee-96b3-4481-9bd8-4f74180b263b",
|
||||
// message: "QM report failed, see logs for details: ${env.BUILD_URL}",
|
||||
|
|
|
|||
Loading…
Reference in New Issue