Skip to content

Commit c87f638

Browse files
committed
feat(sonarqube): add sonarqube for project
1 parent bc93b5a commit c87f638

File tree

3 files changed

+33
-7
lines changed

3 files changed

+33
-7
lines changed

.circleci/config.yml

+17-7
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,17 @@ jobs:
3131
paths:
3232
- .
3333

34+
sonar-scan:
35+
machine:
36+
image: ubuntu-2004:202101-01
37+
working_directory: ~/speech-recognition-model-api/
38+
steps:
39+
- checkout:
40+
path: ~/speech-recognition-model-api
41+
- run:
42+
name: Sonar Scan
43+
command: docker run --rm -e SONAR_HOST_URL="https://sonarcloud.io" -e SONAR_TOKEN=$SONAR_TOKEN -v $PWD:/usr/src sonarsource/sonar-scanner-cli -D sonar.branch.name=$CIRCLE_BRANCH
44+
3445
setup_functional_tests:
3546
parameters:
3647
cluster-name:
@@ -367,6 +378,9 @@ workflows:
367378
name: check_fe
368379
env_name: default
369380

381+
- sonar-scan:
382+
name: sonar-scan
383+
370384
- create-workspace:
371385
name: create-workspace
372386
requires:
@@ -582,7 +596,7 @@ workflows:
582596
path: ./db-refresher
583597
extra-build-args: --build-arg NODE_CONFIG_ENV=dev
584598
repo: ${DB_REFRESHER_REPO}
585-
tag: "dev,test,prod,uat"
599+
tag: 'dev,test,prod,uat'
586600
requires:
587601
- migrate_dev_azure
588602

@@ -753,7 +767,6 @@ workflows:
753767
requires:
754768
- push_uat_image
755769

756-
757770
- approve_to_deploy:
758771
name: approve_prod_deployment_aks
759772
type: approval
@@ -763,7 +776,6 @@ workflows:
763776
# branches:
764777
# only: master
765778

766-
767779
- db_migrate_azure:
768780
name: migrate_prod_azure
769781
db_name: ${AZURE_PROD_DB_NAME}
@@ -772,7 +784,6 @@ workflows:
772784
requires:
773785
- approve_prod_deployment_aks
774786

775-
776787
- azure-acr/build-and-push-image:
777788
pre-steps:
778789
- *fast-checkout
@@ -783,7 +794,7 @@ workflows:
783794
path: ./db-refresher
784795
extra-build-args: --build-arg NODE_CONFIG_ENV=prod
785796
repo: ${DB_REFRESHER_REPO}
786-
tag: "prod"
797+
tag: 'prod'
787798
checkout: false
788799
requires:
789800
- migrate_prod_azure
@@ -816,7 +827,6 @@ workflows:
816827
requires:
817828
- migrate_prod_azure
818829

819-
820830
- aks_deployment:
821831
name: prod_deployment_eks
822832
cluster-name: ${AZURE_PROD_CLUSTER_NAME}
@@ -825,4 +835,4 @@ workflows:
825835
azure_login_server_name: ${AZURE_LOGIN_SERVER_NAME_PROD}
826836
azure_repo_api: ${AZURE_REPO}
827837
requires:
828-
- push_prod_image
838+
- push_prod_image

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ logs
127127
crowdsource-api/.env
128128
# ignore the upload files
129129
crowdsource-api/uploads
130+
131+
# Sonar scan reports
132+
.scannerwork/

sonar-project.properties

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
sonar.projectKey=crowdsource-dataplatform
2+
sonar.projectVersion=1.0
3+
4+
sonar.host.url=https://sonarcloud.io
5+
sonar.organization=vakyansh
6+
# Path is relative to the sonar-project.properties file. Defaults to .
7+
sonar.sources=crowdsource-api/src
8+
9+
# Exclusions
10+
sonar.exclusions=crowdsource-api/migrations/*
11+
12+
# Encoding of the source code. Default is default system encoding
13+
sonar.sourceEncoding=UTF-8

0 commit comments

Comments
 (0)