Skip to content

Commit ae11f00

Browse files
authored
Update sonar-analysis.yml
1 parent 5ff0df5 commit ae11f00

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

.github/workflows/sonar-analysis.yml

+19-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ on:
66
- completed
77
workflow_dispatch:
88
inputs:
9-
runid
9+
debug_run_id:
10+
description: "Run ID for debugging purposes"
11+
required: true
12+
default: ""
1013

1114
jobs:
1215
sonar:
@@ -19,7 +22,8 @@ jobs:
1922
uses: dawidd6/action-download-artifact@v6
2023
with:
2124
workflow: sonarcloud.yml
22-
run_id: ${{ github.event.workflow_run.id }}
25+
run_id: ${{ inputs.debug_run_id }}
26+
#run_id: ${{ github.event.workflow_run.id }}
2327

2428
- name: Extract Variables from File
2529
run: |
@@ -35,9 +39,22 @@ jobs:
3539
echo "PR_BRANCH=$PR_BRANCH" >> $GITHUB_ENV
3640
echo "BASE_REF=$BASE_REF" >> $GITHUB_ENV
3741

42+
- name: SonarCloud Analysis
43+
uses: SonarSource/sonarqube-scan-action@v4
44+
if: env.PR_NUMBER == '' # Main branch
45+
env:
46+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
47+
with:
48+
args: >
49+
--define sonar.cfamily.compile-commands="build_wrapper_output/compile_commands.json"
50+
--define project.settings=sonar-project.properties \
51+
--define sonar.inclusions=**/*.c,**/*.h \
52+
--define sonar.exclusions=tests/ \
53+
--define sonar.scm.revision=${{ env.HEAD_SHA }} \
3854
3955
- name: SonarCloud Analysis
4056
uses: SonarSource/sonarqube-scan-action@v4
57+
if: env.PR_NUMBER != '' # Only run if PR_NUMBER is set
4158
env:
4259
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4360
with:

0 commit comments

Comments
 (0)