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 2023/01/23 18:10:44 UTC

[logging-log4j2] branch release-2.x updated: Run `mvnw.cmd` to download wrapper

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

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


The following commit(s) were added to refs/heads/release-2.x by this push:
     new bd8cb0477b Run `mvnw.cmd` to download wrapper
bd8cb0477b is described below

commit bd8cb0477bd1529b5aec46f304cd7b852e927e4b
Author: Piotr P. Karwasz <pi...@karwasz.org>
AuthorDate: Mon Jan 23 18:14:35 2023 +0100

    Run `mvnw.cmd` to download wrapper
---
 .github/workflows/build.yml | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index dd3a7de8ff..a433bd4a35 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -66,15 +66,22 @@ jobs:
 
       - name: Inspect environment (Linux)
         if: runner.os == 'Linux'
-        run: env | grep '^JAVA'
+        run: |
+          env | grep '^JAVA'
+          ./mvnw --version
 
       - name: Inspect environment (Windows)
         if: runner.os == 'Windows'
-        run: set java
+        shell: cmd
+        run: |
+          set JAVA
+          mvnw --version
 
       - name: Inspect environment (MacOS)
         if: runner.os == 'macOS'
-        run: env | grep '^JAVA'
+        run: |
+          env | grep '^JAVA'
+          ./mvnw --version
 
       - name: Maven "verify"
         timeout-minutes: 60