Skip to content

Instantly share code, notes, and snippets.

@Wooder
Created November 29, 2021 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Wooder/2be8d62a66c306b7c8384ec01a612373 to your computer and use it in GitHub Desktop.
Save Wooder/2be8d62a66c306b7c8384ec01a612373 to your computer and use it in GitHub Desktop.
sonarqube-check:
stage: test
image:
name: sonarsource/sonar-scanner-cli:latest
entrypoint: [""]
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
cache:
key: "${CI_JOB_NAME}"
paths:
- .sonar/cache
script:
- sonar-scanner
allow_failure: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment