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::"