diff --git a/Jenkinsfile b/Jenkinsfile index 72e3635..383f66b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 * * MON') + cron('0 8 * * MON') } @@ -70,7 +70,6 @@ sh ''' pip install --user -r requirements.txt ''' - print env.JENKINS_URL } }