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 02:44:24 UTC

[maven-surefire] branch ci-reporting updated: current errorprone works with 11+, so make this easier by building with 11 first

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 e07bbbb  current errorprone works with 11+, so make this easier by building with 11 first
e07bbbb is described below

commit e07bbbb33da14b82c968bea8b15b50cf7047e12d
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Wed Mar 2 12:31:12 2022 +1000

    current errorprone works with 11+, so make this easier by building with 11 first
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 Jenkinsfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 7fd4d70..c1588e1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -32,7 +32,8 @@ properties(
 final def oses = ['linux':'ubuntu && maven', 'windows':'windows-he']
 final def mavens = env.BRANCH_NAME == 'master' ? ['3.8.x', '3.2.x'] : ['3.8.x']
 // all non-EOL versions and the first EA
-final def jdks = [8, 11, 17, 18]
+// make 11 first for ci-reporting to avoid too complicated script
+final def jdks = [11, 8, 11, 17, 18]
 
 final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
 final def goals = ['clean', 'install']