adding new script

master
rforstner 2022-01-21 13:44:59 +01:00
parent 4ea50ba3fd
commit b7cf28ef03
1 changed files with 2 additions and 3 deletions

5
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 * * MON')
cron('0 8 * * MON')
}
@ -70,7 +70,6 @@
sh '''
pip install --user -r requirements.txt
'''
print env.JENKINS_URL
}
}