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:11:23 UTC

[logging-log4j2] branch master 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 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 05eac8354f Run `mvnw.cmd` to download wrapper
05eac8354f is described below

commit 05eac8354ff980fb9f93ca46dc1447694fdaf32b
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 42864fbc7b..9265c30131 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -51,15 +51,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