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 2018/05/08 11:53:29 UTC

[maven-surefire] branch 1518 updated (9daa1b2 -> 92836be)

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

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


 discard 9daa1b2  jenkinsfile: windows-2012-1||windows-2012-2||windows-2016-1
     new 92836be  jenkinsfile: windows-2012-1||windows-2012-2||windows-2016-1

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   (9daa1b2)
            \
             N -- N -- N   refs/heads/1518 (92836be)

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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
tibordigana@apache.org.

[maven-surefire] 01/01: jenkinsfile: windows-2012-1||windows-2012-2||windows-2016-1

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

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

commit 92836beddfc641e4702bb0f52f8921cfd82cecdc
Author: Tibor17 <ti...@apache.org>
AuthorDate: Tue May 8 12:59:24 2018 +0200

    jenkinsfile: windows-2012-1||windows-2012-2||windows-2016-1
---
 Jenkinsfile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 5df67a0..c00a41e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -30,7 +30,7 @@ properties(
     ]
 )
 
-final def oses = ['linux', 'windows']
+final def oses = ['linux':'ubuntu', 'windows':'Windows && !windows-2012-3']
 final def mavens = env.BRANCH_NAME == 'master' ? ['3.2.x', '3.3.x', '3.5.x'] : ['3.5.x']
 final def jdks = [7, 8, 9, 10]
 
@@ -38,10 +38,11 @@ final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
 final def goals = ['clean', 'install', 'jacoco:report']
 final Map stages = [:]
 
-oses.eachWithIndex { os, indexOfOs ->
+oses.eachWithIndex { osMapping, indexOfOs ->
     mavens.eachWithIndex { maven, indexOfMaven ->
         jdks.eachWithIndex { jdk, indexOfJdk ->
-            final String label = jenkinsEnv.labelForOS(os);
+            def os = osMapping.key
+            def label = osMapping.value
             final String jdkTestName = jenkinsEnv.jdkFromVersion(os, jdk.toString())
             final String jdkName = jenkinsEnv.jdkFromVersion(os, '8')
             final String mvnName = jenkinsEnv.mvnFromVersion(os, maven)

-- 
To stop receiving notification emails like this one, please contact
tibordigana@apache.org.