You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2018/12/20 15:21:16 UTC

[sling-tooling-jenkins] branch feature/SLING-7245 updated (14402a4 -> 112a4a3)

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

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


    from 14402a4  SLING-7245 - Validate pull requests using Jenkins
     new ec259f2  SLING-7245 - Validate pull requests using Jenkins
     new 112a4a3  SLING-7245 - Validate pull requests using Jenkins

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 vars/slingOsgiBundleBuild.groovy | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)


[sling-tooling-jenkins] 01/02: SLING-7245 - Validate pull requests using Jenkins

Posted by ro...@apache.org.
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

commit ec259f2e009d347276921f268a1e347caab946ed
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Dec 18 00:06:06 2018 +0100

    SLING-7245 - Validate pull requests using Jenkins
    
    Define email recipients
---
 vars/slingOsgiBundleBuild.groovy | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy
index 786d6bd..a9f49ab 100644
--- a/vars/slingOsgiBundleBuild.groovy
+++ b/vars/slingOsgiBundleBuild.groovy
@@ -10,7 +10,8 @@ def call(Map params = [:]) {
         mavenGoal: '',
         additionalMavenParams: '',
         rebuildFrequency: '@weekly',
-        enabled: true
+        enabled: true,
+        emailRecipients: []
     ]
 
     def moduleDir = params.containsKey('moduleDir') ? params.moduleDir : '.'


[sling-tooling-jenkins] 02/02: SLING-7245 - Validate pull requests using Jenkins

Posted by ro...@apache.org.
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

commit 112a4a39dd182389399eec32feb2acc8b2033cb8
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Dec 18 00:06:06 2018 +0100

    SLING-7245 - Validate pull requests using Jenkins
    
    Add support for submodules
---
 vars/slingOsgiBundleBuild.groovy | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy
index a9f49ab..7178a81 100644
--- a/vars/slingOsgiBundleBuild.groovy
+++ b/vars/slingOsgiBundleBuild.groovy
@@ -31,6 +31,9 @@ def call(Map params = [:]) {
                 }
             }
             echo "Final job config: ${jobConfig}"
+            if ( fileExists('.gitmodules') ) {
+                sh 'git submodule update --init'
+            }
         }
 
         def jobTriggers = [