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 3fee5f9 SLING-7245 - Validate pull requests using Jenkins
3fee5f9 is described below
commit 3fee5f9253a4846c1dafeb7a1c21b117cb33229b
Author: Robert Munteanu <[email protected]>
AuthorDate: Tue Dec 18 00:06:06 2018 +0100
SLING-7245 - Validate pull requests using Jenkins
Correct label definitions for multi-JDK builds
---
vars/slingOsgiBundleBuild.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy
index d15352c..8a113e6 100644
--- a/vars/slingOsgiBundleBuild.groovy
+++ b/vars/slingOsgiBundleBuild.groovy
@@ -15,7 +15,7 @@ def call(Map params = [:]) {
}
jdkVersions.each { jdkVersion ->
- stage('Build (Java ${jdkVersion}(') {
+ stage("Build (Java ${jdkVersion})") {
def jenkinsJdkLabel = availableJDKs[jdkVersion]
if ( !jenkinsJdkLabel )
throw new RuntimeException("Unknown JDK version
${jdkVersion}")