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

[logging-log4cxx] branch LOGCXX-562 updated: figure out why posix fails and fix possible bug with windows

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

rmiddleton pushed a commit to branch LOGCXX-562
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git


The following commit(s) were added to refs/heads/LOGCXX-562 by this push:
     new ebd935fb figure out why posix fails and fix possible bug with windows
ebd935fb is described below

commit ebd935fbfee1bf4dcd183744c1bd380b26cee352
Author: Robert Middleton <ro...@rm5248.com>
AuthorDate: Wed Oct 26 22:03:15 2022 -0400

    figure out why posix fails and fix possible bug with windows
---
 .github/workflows/log4cxx-posix.yml   | 7 ++++---
 .github/workflows/log4cxx-windows.yml | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/log4cxx-posix.yml b/.github/workflows/log4cxx-posix.yml
index 7f72a3c8..a50bdc42 100644
--- a/.github/workflows/log4cxx-posix.yml
+++ b/.github/workflows/log4cxx-posix.yml
@@ -70,13 +70,14 @@ jobs:
         sudo apt-get update
         sudo apt-get install -y libapr1-dev libaprutil1-dev libfmt-dev
 
-    - name: 'run cmake - *nix'
+    - name: 'run cmake - posix'
+      shell: bash
       run: |
         cd main
         mkdir build
         cd build
-	ls /usr/local/include
-	ls /usr/include/fmt
+        ls /usr/local/include
+        ls /usr/include/fmt
         cmake -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} -DCMAKE_C_COMPILER=${{ matrix.cc }} ..
         cmake --build .
 
diff --git a/.github/workflows/log4cxx-windows.yml b/.github/workflows/log4cxx-windows.yml
index e89deff2..f2e4b69e 100644
--- a/.github/workflows/log4cxx-windows.yml
+++ b/.github/workflows/log4cxx-windows.yml
@@ -67,7 +67,7 @@ jobs:
         cd main
         mkdir build
         cd build
-        cmake -DLOG4CXX_TEST_PROGRAM_PATH=C:\msys64\usr\bin "-DCMAKE_TOOLCHAIN_FILE=$THISDIR/vcpkg/scripts/buildsystems/vcpkg.cmake" -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} -DCMAKE_C_COMPILER=${{ matrix.cc }} ..
+        cmake -DLOG4CXX_TEST_PROGRAM_PATH=C:\msys64\usr\bin "-DCMAKE_TOOLCHAIN_FILE=$THISDIR/vcpkg/scripts/buildsystems/vcpkg.cmake" ..
         cmake --build .
 
     - name: run unit tests