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/18 17:07:51 UTC

[sling-tooling-jenkins] branch feature/SLING-7245 updated (c3aa9fb -> 42e0e02)

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 c3aa9fb  SLING-7245 - Validate pull requests using Jenkins
     new 18b46b0  SLING-7245 - Validate pull requests using Jenkins
     new 42e0e02  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 | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


[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 42e0e029e87d8c336f181a6cdc0330ad5648f013
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Dec 18 00:06:06 2018 +0100

    SLING-7245 - Validate pull requests using Jenkins
    
    Fix syntax of withMaven invocation
---
 vars/slingOsgiBundleBuild.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy
index 55daa97..32acdd8 100644
--- a/vars/slingOsgiBundleBuild.groovy
+++ b/vars/slingOsgiBundleBuild.groovy
@@ -48,7 +48,7 @@ def call(Map params = [:]) {
                     def jenkinsJdkLabel = availableJDKs[jdkVersion]
                     if ( !jenkinsJdkLabel )
                         throw new RuntimeException("Unknown JDK version ${jdkVersion}")
-                    withMaven(maven: mvnVersion, jdk: jenkinsJdkLabel, artifactsPublisher(disabled: true) ) {
+                    withMaven(maven: mvnVersion, jdk: jenkinsJdkLabel, options: [artifactsPublisher(disabled: true)] ) {
                     dir(moduleDir) {
                             sh "mvn clean ${goal} ${jobConfig.additionalMavenParams}"
                         }


[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 18b46b0f7fd7e0d9122dbd2f68109b7baa256bec
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Dec 18 00:06:06 2018 +0100

    SLING-7245 - Validate pull requests using Jenkins
    
    Add a TODO regarding publishing
---
 vars/slingOsgiBundleBuild.groovy | 1 +
 1 file changed, 1 insertion(+)

diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy
index dd5d745..55daa97 100644
--- a/vars/slingOsgiBundleBuild.groovy
+++ b/vars/slingOsgiBundleBuild.groovy
@@ -39,6 +39,7 @@ def call(Map params = [:]) {
             echo "Final job config: ${jobConfig}"
         }
 
+        // TODO - configure all published to be enabled only for the first build
         if ( jobConfig.enabled ) {
             deploy = true
             jobConfig.jdks.each { jdkVersion ->