add vs to build win matrix to confirm functionality

This commit is contained in:
tooomm 2026-07-24 14:25:39 +02:00
parent 16ff75c20f
commit ee2feb4c2a
2 changed files with 24 additions and 3 deletions

View file

@ -274,6 +274,9 @@ fi
# Configure CMake
echo "::group::Configure CMake"
cmake --version
if [[ "$CMAKE_GENERATOR" =~ ^Ninja ]]; then
ninja --version
fi
echo "Running cmake with flags: ${flags[*]}"
cmake .. "${flags[@]}"
echo "::endgroup::"
@ -281,7 +284,7 @@ echo "::endgroup::"
# Build
echo "::group::Build project"
echo "Running cmake --build with flags: ${buildflags[*]}"
cmake --build . "${buildflags[@]}" --verbose
cmake --build . --verbose "${buildflags[@]}"
echo "::endgroup::"
if [[ $USE_CCACHE == "1" ]]; then