This is an automated email from the ASF dual-hosted git repository. stephenc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-jenkins-lib.git
The following commit(s) were added to refs/heads/master by this push: new 515f6a2 Add Java 9 515f6a2 is described below commit 515f6a2e79df7b227734701904618dd3ff46785a Author: Stephen Connolly <stephen.alan.conno...@gmail.com> AuthorDate: Sun Nov 26 22:55:45 2017 +0000 Add Java 9 --- vars/asfMavenTlpStdBuild.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vars/asfMavenTlpStdBuild.groovy b/vars/asfMavenTlpStdBuild.groovy index 9ff61bb..8a2bce8 100644 --- a/vars/asfMavenTlpStdBuild.groovy +++ b/vars/asfMavenTlpStdBuild.groovy @@ -1,6 +1,6 @@ def call(Map params = [:]) { def oses = params.containsKey('os') ? params.os : ['linux', 'windows'] - def jdks = params.containsKey('jdks') ? params.jdks : ['7','8'] + def jdks = params.containsKey('jdks') ? params.jdks : ['7','8','9'] def maven = params.containsKey('maven') ? params.maven : '3.x.x' def failFast = params.containsKey('failFast') ? params.failFast : true Map tasks = [failFast: failFast] @@ -12,6 +12,7 @@ def call(Map params = [:]) { String mvnName = jenkinsEnv.mvnFromVersion(os, "${maven}") echo "OS: ${os} JDK: ${jdk} Maven: ${maven} => Label: ${label} JDK: ${jdkName} Maven: ${mvnName}" if (label == null || jdkName == null || mvnName == null) { + echo "Skipping ${os}-jdk${jdk} as unsupported by Jenkins Environment" continue; } String stageId = "${os}-jdk${jdk}" -- To stop receiving notification emails like this one, please contact ['"commits@maven.apache.org" <commits@maven.apache.org>'].