Sonar scanner command found on Gitlab CI/CD

Must-share information (formatted with Image):

  • Sonarqube 9.5.0, SonarScanner 4.7.0
  • I am trying to integrate Sonarqube into my gitlab project.
  • I have successfully added the Sonar configuration my pipeline
    The below is the job I have added to my gitlab yml file.
sonarqube-check:
  stage: analyze
  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 -Dsonar.qualitygate.wait=true
  allow_failure: true
  only:
    - merge_requests
    - feature/unit-test # or the name of your main branch
    - develop
  tags:
    - stage

I am currently having an error; “sonar-scanner command not found”

Hi,

Welcome to the community!

SonarQube is the centralized server. To run the analysis, you need a local analyzer install, which is a separate executable.

I believe that for GitLab you want to run it from Docker…? Anyway, the docs should get you started.

 
HTH,
Ann