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 2021/03/06 11:53:54 UTC

[maven-surefire] branch master updated (98a3a4e -> ba77392)

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

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


    from 98a3a4e  [githubci] investigating invoker's logs
     new 8846204  [githubci] fixed: port 8084 used by GitHub CI www-data
     new ba77392  artifactId should match directory name in Failsafe IT to better investigate the logs

The 2 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:
 .github/workflows/maven.yml                                     | 3 ++-
 maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml     | 2 +-
 maven-failsafe-plugin/src/it/multiple-summaries-failing/pom.xml | 2 +-
 maven-failsafe-plugin/src/it/multiple-summaries/pom.xml         | 2 +-
 maven-failsafe-plugin/src/it/working-directory/pom.xml          | 2 +-
 5 files changed, 6 insertions(+), 5 deletions(-)


[maven-surefire] 02/02: artifactId should match directory name in Failsafe IT to better investigate the logs

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

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

commit ba773923fca3638c5187318f8224dceb906f3ff7
Author: tibordigana <ti...@gmail.com>
AuthorDate: Sat Mar 6 12:53:44 2021 +0100

    artifactId should match directory name in Failsafe IT to better investigate the logs
---
 maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml     | 2 +-
 maven-failsafe-plugin/src/it/multiple-summaries-failing/pom.xml | 2 +-
 maven-failsafe-plugin/src/it/multiple-summaries/pom.xml         | 2 +-
 maven-failsafe-plugin/src/it/working-directory/pom.xml          | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml b/maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml
index 84a8ffe..8d15635 100644
--- a/maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml
+++ b/maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml
@@ -22,7 +22,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>localhost</groupId>
-  <artifactId>jetty-war-test</artifactId>
+  <artifactId>jetty-war-test-passing</artifactId>
   <version>1.0</version>
   <packaging>war</packaging>
   <name>run passing tests in jetty container</name>
diff --git a/maven-failsafe-plugin/src/it/multiple-summaries-failing/pom.xml b/maven-failsafe-plugin/src/it/multiple-summaries-failing/pom.xml
index af2df65..0f5343a 100644
--- a/maven-failsafe-plugin/src/it/multiple-summaries-failing/pom.xml
+++ b/maven-failsafe-plugin/src/it/multiple-summaries-failing/pom.xml
@@ -22,7 +22,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>localhost</groupId>
-  <artifactId>working-directory-test</artifactId>
+  <artifactId>multiple-summaries-failing</artifactId>
   <version>1.0</version>
   <name>Run tests multiple times</name>
 
diff --git a/maven-failsafe-plugin/src/it/multiple-summaries/pom.xml b/maven-failsafe-plugin/src/it/multiple-summaries/pom.xml
index 2c508f3..ec3cfab 100644
--- a/maven-failsafe-plugin/src/it/multiple-summaries/pom.xml
+++ b/maven-failsafe-plugin/src/it/multiple-summaries/pom.xml
@@ -22,7 +22,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>localhost</groupId>
-  <artifactId>working-directory-test</artifactId>
+  <artifactId>multiple-summaries</artifactId>
   <version>1.0</version>
   <name>Run tests multiple times</name>
 
diff --git a/maven-failsafe-plugin/src/it/working-directory/pom.xml b/maven-failsafe-plugin/src/it/working-directory/pom.xml
index 22d5034..1ce6920 100644
--- a/maven-failsafe-plugin/src/it/working-directory/pom.xml
+++ b/maven-failsafe-plugin/src/it/working-directory/pom.xml
@@ -22,7 +22,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>localhost</groupId>
-  <artifactId>working-directory-test</artifactId>
+  <artifactId>working-directory</artifactId>
   <version>1.0</version>
   <name>Run tests in a nonexistent working directory</name>
 


[maven-surefire] 01/02: [githubci] fixed: port 8084 used by GitHub CI www-data

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

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

commit 884620452c210420247a561a8a263506e18c57c2
Author: tibordigana <ti...@gmail.com>
AuthorDate: Sat Mar 6 12:22:35 2021 +0100

    [githubci] fixed: port 8084 used by GitHub CI www-data
---
 .github/workflows/maven.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index b393487..cc38513 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -35,6 +35,7 @@ jobs:
       fail-fast: false
 
     runs-on: ${{ matrix.os }}
+    timeout-minutes: 120
 
     steps:
       - name: Checkout
@@ -46,7 +47,7 @@ jobs:
           java-version: ${{ matrix.java }}
 
       - name: Build with Maven
-        run: mvn clean install -e -B -V -nsu --no-transfer-progress -P run-its
+        run: mvn clean install -e -B -V -nsu --no-transfer-progress -P run-its -Dfailsafe-integration-test-port=8083
 
       - name: Upload artifact surefire-its
         uses: actions/upload-artifact@v2-preview