From 9d6250d57abefb7b6b906f1a4f98ecd40df45810 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 10 Jul 2025 19:13:48 +0300 Subject: [PATCH] Run every night at midnight --- Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9390bac..2becea1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,11 @@ pipeline { - agent any + agent { + label 'linux' + } + + trigger { + cron('0 0 * * *') + } options { buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))