From 3a09c87556ba6f3e53bfaa5cb22521bfbf0a91b6 Mon Sep 17 00:00:00 2001 From: Bruno Alexandre Rosa <1791393+brunoalr@users.noreply.github.com> Date: Wed, 29 Oct 2025 15:42:42 -0300 Subject: [PATCH] display cmake flags in builds --- .ci/compile.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ci/compile.sh b/.ci/compile.sh index 040345360..ac1dc2a22 100755 --- a/.ci/compile.sh +++ b/.ci/compile.sh @@ -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::"