Skip to content

Commit 79307f1

Browse files
authored
Merge pull request #22 from camel-tooling/19-activateSonarAnalysis
#19 - Activate Sonar analysis
2 parents 3f2f071 + 7771de2 commit 79307f1

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ install:
1111
- 'npm run vscode:prepublish'
1212
- 'npm install -g vsce'
1313
- 'vsce package'
14+
after_success:
15+
- if [[ $TRAVIS_PULL_REQUEST == "false" && $TRAVIS_BRANCH == "master" ]]; then
16+
sonar-scanner
17+
fi
1418
deploy:
1519
- provider: releases
1620
api_key: ${DEPLOY_TOKEN}
@@ -30,3 +34,8 @@ cache:
3034
directories:
3135
- "node_modules"
3236
env: DISPLAY=:99
37+
addons:
38+
sonarcloud:
39+
organization: "camel-tooling"
40+
branches:
41+
- master

sonar-project.properties

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
sonar.projectKey=camel-lsp-client-vscode
2+
sonar.projectName=VS Code client for Apache Camel Language Server
3+
sonar.sources=src,scripts
4+
sonar.tests=test
5+
6+
sonar.links.homepage=https://github.com/camel-tooling/camel-lsp-client-vscode
7+
sonar.links.ci=https://travis-ci.org/camel-tooling/camel-lsp-client-vscode
8+
sonar.links.scm=https://github.com/camel-tooling/camel-lsp-client-vscode
9+
sonar.links.issue=https://github.com/camel-tooling/camel-lsp-client-vscode/issues

0 commit comments

Comments
 (0)