You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by pk...@apache.org on 2022/06/22 20:10:55 UTC

[logging-log4j2] branch master updated: Fail lazily

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

pkarwasz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new da68155a27 Fail lazily
da68155a27 is described below

commit da68155a27fc94d7cd20d13f2e4e5c0a9cb9cd67
Author: ppkarwasz <pi...@karwasz.org>
AuthorDate: Wed Jun 22 22:10:52 2022 +0200

    Fail lazily
    
    If the tests of a module fail, allow other test suites to run.
---
 .github/workflows/build.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 9b676feece..00d3bad3d6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -64,7 +64,7 @@ jobs:
         shell: bash
         run: |
           ./mvnw \
-            --show-version --batch-mode --errors --no-transfer-progress \
+            --show-version --batch-mode --errors --no-transfer-progress --fail-at-end \
             -DtrimStackTrace=false \
             -Dsurefire.rerunFailingTestsCount=2 \
             -Dlog4j2.junit.fileCleanerSleepPeriodMillis=1000 \
@@ -78,7 +78,7 @@ jobs:
         shell: bash
         run: |
           ./mvnw \
-            --show-version --batch-mode --errors --no-transfer-progress \
+            --show-version --batch-mode --errors --no-transfer-progress --fail-at-end \
             --non-recursive \
             -Dmaven.doap.skip \
             -DskipTests \