You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2020/08/14 11:02:44 UTC

[logging-log4j2] branch master updated (ff76b82 -> d0fe63a)

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

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


    omit ff76b82  Add MacOS to GitHub Actions.
     new d0fe63a  Add MacOS to GitHub Actions.

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   (ff76b82)
            \
             N -- N -- N   refs/heads/master (d0fe63a)

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:
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[logging-log4j2] 01/01: Add MacOS to GitHub Actions.

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

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

commit d0fe63a069fbb4918a7baf683171d1588f49bd37
Author: Volkan Yazıcı <vo...@gmail.com>
AuthorDate: Fri Aug 14 11:26:00 2020 +0200

    Add MacOS to GitHub Actions.
---
 .github/workflows/maven.yml | 22 +++++++++++++++++++---
 1 file changed, 19 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 47c8f07..b99a32e 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -9,7 +9,7 @@ jobs:
 
     strategy:
       matrix:
-        os: [ubuntu-latest, windows-latest]
+        os: [ubuntu-latest, windows-latest, macos-latest]
 
     steps:
 
@@ -51,7 +51,7 @@ jobs:
         uses: scacap/action-surefire-report@v1
         with:
           github_token: ${{ secrets.GITHUB_TOKEN }}
-          check_name: 'Linux Test Report'
+          check_name: 'Test Report (Linux)'
           report_paths: '**/*-reports/TEST-*.xml'
 
       - name: Inspect environment (Windows)
@@ -67,5 +67,21 @@ jobs:
         uses: scacap/action-surefire-report@v1
         with:
           github_token: ${{ secrets.GITHUB_TOKEN }}
-          check_name: 'Windows Test Report'
+          check_name: 'Test Report (Windows)'
+          report_paths: '**/*-reports/TEST-*.xml'
+
+      - name: Inspect environment (MacOS)
+        if: runner.os == 'macOS'
+        run: env | grep '^JAVA'
+
+      - name: Build with Maven (MacOS)
+        if: runner.os == 'macOS'
+        run: ./mvnw -V -B -e -DtrimStackTrace=false -Dmaven.test.failure.ignore=true -Dsurefire.rerunFailingTestsCount=1 --global-toolchains .github/workflows/maven-toolchains.xml verify
+
+      - name: Publish Test Results (MacOS)
+        if: runner.os == 'macOS'
+        uses: scacap/action-surefire-report@v1
+        with:
+          github_token: ${{ secrets.GITHUB_TOKEN }}
+          check_name: 'Test Report (MacOS)'
           report_paths: '**/*-reports/TEST-*.xml'