From: Jonathan Rajotte Date: Wed, 10 Jun 2015 20:42:43 +0000 (-0400) Subject: Add triggers to dsl-triggers-job X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=d585fdc44a2106349e5a5ff22cf59f82bcbcbfbd;p=lttng-ci.git Add triggers to dsl-triggers-job For kernel: build start at midnight. For module: poll scm daily (random time for each job) --- diff --git a/dsl/kernel-lttng-modules.seed.groovy b/dsl/kernel-lttng-modules.seed.groovy index de04158..95aeee4 100644 --- a/dsl/kernel-lttng-modules.seed.groovy +++ b/dsl/kernel-lttng-modules.seed.groovy @@ -325,6 +325,9 @@ if (fail){ steps { systemGroovyCommand(dslTriggerKernel) } + triggers { + cron("H 0 * * *") + } } modulesBranches.each { branch -> @@ -332,6 +335,9 @@ if (fail){ steps { systemGroovyCommand(dslTriggerModule.replaceAll("JOBPREFIX",modulesPrefix + separator + branch + separator)) } + triggers { + scm('@daily') + } } } }