Jenkinsfile edited online with Bitbucket

master
Rene Forstner (ext.) 2022-02-04 09:07:26 +01:00
parent fda5ab5a80
commit b238d41526
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -32,13 +32,13 @@
//here comes the trigger according to crontabs - jenkins is in UTC
triggers {
//every 1st of every month at 00:00
//cron('0 0 1 * *')
cron('0 0 1 * *')
//every day at 08:00
//cron('0 8 * * *')
//every monday at 08:00
cron('0 8 * * 1')
//cron('0 8 * * 1')
}
@ -76,7 +76,7 @@
stage('Execute Reporting Script') {
steps {
sh 'python createReport.py -p week'
sh 'python createReport.py -p month'
//Only required once CN is not reachable from EMEA
@ -109,4 +109,4 @@
cleanWs()
}
}
}
}