Skip to content

Commit 087903b

Browse files
committed
analysis
Signed-off-by: Anton Dukhovnikov <[email protected]>
1 parent f723ee0 commit 087903b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ jobs:
7777
with:
7878
logfile: ${{ github.workspace }}/build/compile_commands.json
7979
config: '/home/runner/work/rawtoaces/rawtoaces/tests/static_analysis/codechecker.json'
80-
diff: true
80+
# diff: true
8181

8282
- uses: actions/upload-artifact@v4
83-
if: ${{ steps.codechecker.outputs.warnings_in_diff == 'true' }}
83+
if: ${{ steps.codechecker.outputs.warnings == 'true' }}
8484
with:
8585
name: "CodeChecker Bug Reports"
86-
# path: ${{ steps.codechecker.outputs.result-html-dir }}
87-
path: ${{ steps.codechecker.outputs.diff-html-dir }}
86+
path: ${{ steps.codechecker.outputs.result-html-dir }}
87+
# path: ${{ steps.codechecker.outputs.diff-html-dir }}
8888

8989
- uses: actions/upload-artifact@v4
9090
if: false # set to `true` to write out the raw output for diff-ing
@@ -93,5 +93,5 @@ jobs:
9393
path: ${{ steps.codechecker.outputs.analyze-output }}
9494

9595
- name: "Break build if CodeChecker reported any findings"
96-
if: ${{ steps.codechecker.outputs.warnings_in_diff == 'true' }}
96+
if: ${{ steps.codechecker.outputs.warnings == 'true' }}
9797
run: exit 1

0 commit comments

Comments
 (0)