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:55 UTC

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

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