Jenkins Triggering of a Build Step/Stage(not the entire job) at a given interval
问题 I am trying to build a pipeline where i would need to chain multiple jobs and some of them has to start at a certain time. Ex: Job1(starts at Midnight) -> Job2 -> Job3 ->Job4(starts at 4 PM) Using Declarative Syntax: pipeline { agent any stages{ stage('Fetch Latest Code-1') { steps{ build job: 'Get Latest - All Nodes', quietPeriod: 60 } } stage('CI Day - 1') { parallel { stage('ANZ CI'){ steps{ build job: 'ANZ - CI', quietPeriod: 120 } } stage('BRZ CI'){ steps{ build job: 'BRZ_CI',