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 21:15:16 UTC

[maven-surefire] branch ci-reporting updated: typo fix and quick test only for now

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 dbb237d  typo fix and quick test only for now
dbb237d is described below

commit dbb237d2f66eae5359f15b731d4df925f6de8761
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Fri Mar 4 07:15:06 2022 +1000

    typo fix and quick test only for now
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 5f3ee78..50526d8 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -29,11 +29,11 @@ properties(
         disableConcurrentBuilds()
     ]
 )
-final def oses = ['linux', 'windows']
+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, 17, 18]
+final def jdks = [11]//, 8, 17, 18]
 
 final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
 final def goals = ['clean', 'install']
@@ -190,7 +190,7 @@ def buildProcess(String stageKey, String jdkName, String mvnName, goals, options
                   throw e
                 }
                 jacoco  changeBuildStatus: false,
-                        inclusionPattern: '**/org/apache/maven/**/*.class'
+                        inclusionPattern: '**/org/apache/maven/**/*.class',
                         execPattern: '**/target/jacoco*.exec',
                         classPattern: classPatternCsv()),
                         sourcePattern: sourcesPatternCsv()