Skip to content
Snippets Groups Projects
Commit 06654f7c authored by Shane Hutchins's avatar Shane Hutchins
Browse files

Sonar testing

parent 3cac7fd9
No related branches found
No related tags found
1 merge request!536Sonar testing
Pipeline #287935 failed
......@@ -73,6 +73,7 @@ include:
- local: "/devops/gc/pipeline/override-stages.yml"
- local: "/loadtest/pipeline-loadtest.yml"
- local: "/publish.yml"
- local: "/sonar.yml"
# --------------------------------------------------------------------------------
compile-and-unit-test:
......
sonarqube-scan-python:
stage: scan
needs: ["compile-and-unit-test"]
rules:
- if: $SONAR_CLOUD_TOKEN
# - if: $CI_COMMIT_REF_NAME == 'master' || $CI_PIPELINE_SOURCE == 'merge_request_event'
variables:
SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache
GIT_DEPTH: "0" # Tells git to fetch all the branches of the project, required by the analysis task
image:
name: sonarsource/sonar-scanner-cli:latest
entrypoint: [""]
cache:
key: "${CI_JOB_NAME}"
paths:
- .sonar/cache
script:
- |
SONAR_SCANNER_OPTS="
-Dsonar.host.url=${SONAR_CLOUD_URL}
-Dsonar.token=${SONAR_CLOUD_TOKEN}
-Dsonar.projectKey=org.opengroup.osdu:$CI_PROJECT_NAME
-Dsonar.organization=osdu"
if [ -n "$CI_MERGE_REQUEST_IID" ]; then
SONAR_SCANNER_OPTS="$SONAR_SCANNER_OPTS
-Dsonar.pullrequest.gitlab.api_url=https://community.opengroup.org/api/v4
-Dsonar.pullrequest.gitlab.project_id=$CI_PROJECT_ID
-Dsonar.pullrequest.key=$CI_MERGE_REQUEST_IID
-Dsonar.pullrequest.branch=$CI_COMMIT_REF_NAME
-Dsonar.pullrequest.base=$CI_MERGE_REQUEST_TARGET_BRANCH_NAME"
fi
- sonar-scanner
allow_failure: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment