This is an automated email from the ASF dual-hosted git repository. swebb2066 pushed a commit to branch fix_macos_build_action in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git
commit ed845d02ddf71712e37de081095cc038daad65bd Author: Stephen Webb <swebb2...@gmail.com> AuthorDate: Sun Aug 31 12:24:28 2025 +1000 Prevent MacOS CI build failure --- .github/workflows/log4cxx-macos.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/log4cxx-macos.yml b/.github/workflows/log4cxx-macos.yml index e578ce1e..1ab41d8e 100644 --- a/.github/workflows/log4cxx-macos.yml +++ b/.github/workflows/log4cxx-macos.yml @@ -57,7 +57,9 @@ jobs: if [ ${{ matrix.odbc }} == ON ]; then brew install unixodbc; fi if [ ${{ matrix.qt }} == ON ]; then brew install qt; fi if [ ${{ matrix.cxx }} == "g++-14" -a $(cmake --version | head -1 | awk '{split($3, a, "."); print a[1]}') -lt 4 ] - then brew install cmake ninja + then + brew uninstall cmake + brew install cmake ninja fi - name: 'configure and build'