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/02 21:14:55 UTC

[maven-surefire] branch ci-reporting updated: more debug

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 975862d  more debug
975862d is described below

commit 975862d46c8be20d26b21fa7462d46b8765b5768
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Thu Mar 3 07:14:44 2022 +1000

    more debug
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 Jenkinsfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index a973d60..ccb9df0 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -29,7 +29,7 @@ properties(
         disableConcurrentBuilds()
     ]
 )
-final def oses = ['linux':'ubuntu && maven', 'windows':'windows-he']
+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
@@ -63,6 +63,7 @@ oses.eachWithIndex { osMapping, indexOfOs ->
                 node(label) {
                     timestamps {
                         boolean makeReports = indexOfOs == 0 && indexOfMaven == 0 && indexOfJdk == 0
+                        echo "makeReports: " + makeReports + ", indexOfOs:" + indexOfOs + ", indexOfMaven:" + indexOfMaven + ", indexOfJdk:" + indexOfJdk"
                         def failsafeItPort = 8000 + 100 * indexOfMaven + 10 * indexOfJdk
                         def allOptions = options + ['-Djava.awt.headless=true', "-Dfailsafe-integration-test-port=${failsafeItPort}", "-Dfailsafe-integration-test-stop-port=${1 + failsafeItPort}"]
 
@@ -141,7 +142,7 @@ def buildProcess(String stageKey, String jdkName, String mvnName, goals, options
 
         stage("build ${stageKey}") {
 
-             echo "NODE_NAME = ${env.NODE_NAME}, stageKey: ${stageKey}, makeReports" + makeReports
+             echo "NODE_NAME = ${env.NODE_NAME}, stageKey: ${stageKey}, makeReports:" + makeReports
 
              checkout scm