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.
This commit is contained in:
Nicholas Dudfield
2025-10-31 13:09:53 +07:00
parent be6fad9692
commit 83f6bc64e1

View File

@@ -208,7 +208,7 @@ runs:
shell: bash shell: bash
run: | run: |
cd ${{ inputs.build_dir }} cd ${{ inputs.build_dir }}
cmake --build . --config ${{ inputs.configuration }} --parallel $(nproc) cmake --build . --config ${{ inputs.configuration }} --parallel $(nproc) -- -v
- name: Show ccache statistics - name: Show ccache statistics
if: inputs.ccache_enabled == 'true' if: inputs.ccache_enabled == 'true'