You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2022/03/03 00:06:49 UTC

[maven-surefire] branch ci-reporting updated: fix duplicate

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

olamy pushed a commit to branch ci-reporting
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/ci-reporting by this push:
     new 3030b09  fix duplicate
3030b09 is described below

commit 3030b096a0070662d88106294169f6c3a4c3ea39
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Thu Mar 3 10:06:30 2022 +1000

    fix duplicate
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 7b53b26..19271a1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -33,7 +33,7 @@ final def oses = ['linux', 'windows']
 final def mavens = env.BRANCH_NAME == 'master' ? ['3.8.x', '3.2.x'] : ['3.8.x']
 // all non-EOL versions and the first EA
 // make 11 first for ci-reporting to avoid too complicated script
-final def jdks = [11, 8, 11, 17, 18]
+final def jdks = [11, 8, 17, 18]
 
 final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
 final def goals = ['clean', 'install']
@@ -53,11 +53,11 @@ oses.eachWithIndex { osMapping, indexOfOs ->
             mavenOpts += (os == 'linux' ? ' -Xmx1g' : ' -Xmx256m')
 
             if (label == null || jdkName == null || mvnName == null) {
-                println "Skipping ${stageKey} as unsupported by Jenkins Environment."
+                echo "Skipping ${stageKey} as unsupported by Jenkins Environment."
                 return
             }
 
-            println "${stageKey}  ==>  Label: ${label}, JDK: ${jdkName}, Maven: ${mvnName}."
+            echo "${stageKey}  ==>  Label: ${label}, JDK: ${jdkName}, Maven: ${mvnName}."
 
             stages[stageKey] = {
                 node(label) {