Run every night at midnight

This commit is contained in:
retropikzel 2025-07-10 19:13:48 +03:00
parent f8fb335fcd
commit 9d6250d57a
1 changed files with 7 additions and 1 deletions

8
Jenkinsfile vendored
View File

@ -1,5 +1,11 @@
pipeline {
agent any
agent {
label 'linux'
}
trigger {
cron('0 0 * * *')
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))