display cmake flags in builds

This commit is contained in:
Bruno Alexandre Rosa 2025-10-29 15:42:42 -03:00
parent 5a47ad1838
commit 3a09c87556

View file

@ -220,10 +220,12 @@ fi
echo "::group::Configure cmake"
cmake --version
echo "Running cmake with flags: ${flags[@]}"
cmake .. "${flags[@]}"
echo "::endgroup::"
echo "::group::Build project"
echo "Running cmake --build with flags: ${buildflags[@]}"
cmake --build . "${buildflags[@]}"
echo "::endgroup::"