This is an automated email from the ASF dual-hosted git repository.
tibordigana pushed a commit to branch jenkins
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/jenkins by this push:
new 86ae80e unsupported tool
86ae80e is described below
commit 86ae80e87d69f7454d7e444540912897c479a9de
Author: tibordigana <[email protected]>
AuthorDate: Thu Feb 13 23:19:28 2020 +0100
unsupported tool
---
Jenkinsfile | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 54886dc..8ff3a21 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -31,7 +31,7 @@ properties(
)
final def oses = ['linux':'ubuntu && !H23 && !H29 && !H30 && !H40 && !H41',
'windows':'Windows']
-final def mavens = env.BRANCH_NAME == 'master' ? ['3.6.x', '3.2.x'] : ['3.0.x']
+final def mavens = env.BRANCH_NAME == 'master' ? ['3.6.x', '3.2.x'] : ['3.1.x']
// all non-EOL versions and the first EA
final def jdks = [14, 13, 11, 8, 7]
@@ -50,6 +50,11 @@ oses.eachWithIndex { osMapping, indexOfOs ->
final String mvnName = jenkinsEnv.mvnFromVersion(os, maven)
final String stageKey = "${os}-jdk${jdk}-maven${maven}"
+ if (mvnName.contains('3.1') && mvnName.contains('Windows')) {
+ println "Skipping ${stageKey} as unsupported by Jenkins Tool."
+ return
+ }
+
// Referenses for TLS:
//
https://central.sonatype.org/articles/2018/May/04/discontinued-support-for-tlsv11-and-below/?__hstc=31049440.ab2fd229e7f8b6176196d9f78621e1f5.1534324377408.1534324377408.1534324377408.1&__hssc=31049440.1.1534324377409&__hsfp=2729160845
def mavenOpts = '-server -XX:+UseG1GC -XX:+TieredCompilation
-XX:TieredStopAtLevel=1 -XX:+UseNUMA -Xms64m
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn'