Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actions/debug-info/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@ runs:
working-directory: build
run: cat ./_CPack_Packages/win64/NSIS/NSISOutput.log || echo "No NSIS log found. Continuing…"

- name: Output CodeChecker JSON compilation database
if: matrix.id == 'codechecker'
shell: bash
continue-on-error: true
run: cat ${{ env.GITHUB_WORKSPACE }}/codechecker_codechecker_compilation_database.json
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ jobs:
if: matrix.id == 'codechecker' && github.event.action != 'tag'
id: codechecker
with:
build-command: cmake --build --preset conan-debug --target codegen
build-command: cmake --build --preset conan-debug
skipfile: ${{ env.GITHUB_WORKSPACE }}/.github/codechecker/skipfile.txt
# Allow static analyzers to analyze across files instead of one file at a time.
ctu: true
Expand Down
Loading