You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/01/20 02:41:10 UTC

[maven-surefire] branch jdk13 updated (770e21e -> e2e6d31)

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

tibordigana pushed a change to branch jdk13
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git.


 discard 770e21e  testing JDK 12 and 13 with Maven 3+
     new e2e6d31  testing JDK 13 with Maven 3+

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (770e21e)
            \
             N -- N -- N   refs/heads/jdk13 (e2e6d31)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[maven-surefire] 01/01: testing JDK 13 with Maven 3+

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e2e6d31018becfabe8285bd3de293a92b28feea2
Author: tibordigana <ti...@apache.org>
AuthorDate: Sun Jan 20 00:52:51 2019 +0100

    testing JDK 13 with Maven 3+
---
 Jenkinsfile | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index e72aa96..5bbcf74 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -32,7 +32,7 @@ properties(
 
 final def oses = ['linux':'ubuntu && !H24', 'windows':'Windows']
 final def mavens = env.BRANCH_NAME == 'master' ? ['3.5.x', '3.3.x', '3.2.x'] : ['3.5.x']
-final def jdks = env.BRANCH_NAME == 'master' ? [12, 11, 8, 7] : [11, 8, 7]
+final def jdks = env.BRANCH_NAME == 'master' ? [13, 8, 7] : [13, 7]
 
 final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
 final def goals = ['clean', 'install', 'jacoco:report']
@@ -55,23 +55,19 @@ oses.eachWithIndex { osMapping, indexOfOs ->
 
             if (label == null || jdkTestName == null || mvnName == null) {
                 println "Skipping ${stageKey} as unsupported by Jenkins Environment."
-                return;
+                return
             }
 
             println "${stageKey}  ==>  Label: ${label}, JDK: ${jdkTestName}, Maven: ${mvnName}."
 
             stages[stageKey] = {
                 node(label) {
-                    if (os == 'windows' && jdk == 12) {
-                        // https://issues.apache.org/jira/browse/INFRA-17384
-                        return
-                    }
                     timestamps {
-                        def boolean makeReports = indexOfOs == 0 && indexOfMaven == 0 && indexOfJdk == 0
+                        boolean makeReports = indexOfOs == 0 && indexOfMaven == 0 && indexOfJdk == 0
                         def failsafeItPort = 8000 + 100 * indexOfMaven + 10 * indexOfJdk
                         def allOptions = options + ["-Dfailsafe-integration-test-port=${failsafeItPort}", "-Dfailsafe-integration-test-stop-port=${1 + failsafeItPort}"]
                         if (jdk > 7) {
-                            allOptions += ['-DpowermockVersion=2.0.0-RC.4', '-Denforcer.skip=true']
+                            allOptions += ['-DpowermockVersion=2.0.0', '-Denforcer.skip=true']
                         }
                         ws(dir: "${os == 'windows' ? "${TEMP}\\${BUILD_TAG}" : pwd()}") {
                             buildProcess(stageKey, jdkName, jdkTestName, mvnName, goals, allOptions, mavenOpts, makeReports)