File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ # CI/CD Integration
2+ sonar.host.url =https://sonarcloud.io
3+ sonar.qualitygate.wait =true # Wait for the analysis result before marking the CI/CD pipeline status
4+
5+ # GitHub Integration
6+ sonar.scm.provider =git
7+ sonar.pullrequest.provider =GitHub
8+
9+ # Project Identification
10+ sonar.projectKey =nrfconnect_sdk-zephyr
11+ sonar.organization =nrfconnect
12+ sonar.projectName =sdk-zephyr
13+ sonar.projectVersion =1.0
14+
15+ # Source code and test code
16+ sonar.sources =.
17+ sonar.tests =**/tests/**
18+
19+ # Inclusions and exclusions
20+ # sonar.inclusions= #not in use at the moment
21+ sonar.exclusions =**/*.md, **/doc/** # more will be added later
22+ # sonar.test.inclusions=**/tests/** #not in use at the moment
23+ # sonar.coverage.exclusions=
24+
25+ # Language settings
26+ sonar.language =cpp
27+
28+ # Encoding
29+ sonar.sourceEncoding =UTF-8
30+
31+ sonar.python.version =3.12
32+
33+ sonar.cfamily.customTargetArch =arm
34+ sonar.cfamily.customTargetVendor =unknown
35+ sonar.cfamily.customTargetSystem =linux
36+ sonar.cfamily.customTargetEnv =gnueabi
You can’t perform that action at this time.
0 commit comments