This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch feature/SLING-7245
in repository https://gitbox.apache.org/repos/asf/sling-tooling-jenkins.git


The following commit(s) were added to refs/heads/feature/SLING-7245 by this 
push:
     new 01b08dd  SLING-7245 - Validate pull requests using Jenkins
01b08dd is described below

commit 01b08dde22aea7248b89d6ad7a059274918535c4
Author: Robert Munteanu <[email protected]>
AuthorDate: Tue Dec 18 00:06:06 2018 +0100

    SLING-7245 - Validate pull requests using Jenkins
    
    Start implementing periodic rebuild. For now missing possibility to
    change the default.
---
 vars/slingOsgiBundleBuild.groovy | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy
index 8c5a4f3..7afadff 100644
--- a/vars/slingOsgiBundleBuild.groovy
+++ b/vars/slingOsgiBundleBuild.groovy
@@ -16,6 +16,11 @@ def call(Map params = [:]) {
     def moduleDir = params.containsKey('moduleDir') ? params.moduleDir : '.'
 
     node('ubuntu') {
+        properties([
+            pipelineTriggers([
+                cron(env.BRANCH_NAME == 'master' ? '@weekly' : '')
+            ])
+        ])
 
         checkout scm
 

Reply via email to