From 83f6bc64e13920d8cc52a697df7b112004b4c3b1 Mon Sep 17 00:00:00 2001 From: Nicholas Dudfield Date: Fri, 31 Oct 2025 13:09:53 +0700 Subject: [PATCH] fix: restore ninja -v flag for compile command visibility Removed in b24e4647b under naive assumption we were "past debugging phase". Reality: debugging is never done, verbose output is invaluable, costs nothing. Keep -v flag permanently. --- .github/actions/xahau-ga-build/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/xahau-ga-build/action.yml b/.github/actions/xahau-ga-build/action.yml index ef036d967..49edb6984 100644 --- a/.github/actions/xahau-ga-build/action.yml +++ b/.github/actions/xahau-ga-build/action.yml @@ -208,7 +208,7 @@ runs: shell: bash run: | cd ${{ inputs.build_dir }} - cmake --build . --config ${{ inputs.configuration }} --parallel $(nproc) + cmake --build . --config ${{ inputs.configuration }} --parallel $(nproc) -- -v - name: Show ccache statistics if: inputs.ccache_enabled == 'true'