Testing - Fix macOS setup to install Mono separately (#697)

- Replaces single brew install command with multiple individual brew install commands
- Each package installation is wrapped with `|| true` to prevent failures from stopping the workflow
This commit is contained in:
Pasukhin Dmitry
2025-08-30 17:16:23 +01:00
committed by GitHub
parent 5bd288265f
commit 1f02122211
3 changed files with 10 additions and 3 deletions

View File

@@ -126,7 +126,7 @@ runs:
-D BUILD_GTEST=ON \
-D BUILD_CPP_STANDARD=C++17 \
-D INSTALL_GTEST=ON \
-D CMAKE_CXX_FLAGS="-Werror -Wall -Wextra" \
-D CMAKE_CXX_FLAGS="-Werror -Wall -Wextra -Wno-error=cast-function-type-mismatch" \
${{ inputs.additional-cmake-flags }} ..
echo "Configuration completed successfully for macOS"
shell: bash