|
|
@ -20,10 +20,16 @@ steps:
|
|
|
|
- name: sonarqube
|
|
|
|
- name: sonarqube
|
|
|
|
image: openjdk:latest
|
|
|
|
image: openjdk:latest
|
|
|
|
environment:
|
|
|
|
environment:
|
|
|
|
SONAR_LOGIN: ${SONAR_TOKEN}
|
|
|
|
SONAR_TOKEN:
|
|
|
|
|
|
|
|
from_secret: SONAR_TOKEN
|
|
|
|
SONAR_HOST_URL: "https://your-sonarqube-url.com"
|
|
|
|
SONAR_HOST_URL: "https://your-sonarqube-url.com"
|
|
|
|
settings:
|
|
|
|
settings:
|
|
|
|
sources: ./ShakeAndCraft/
|
|
|
|
sources: ./ShakeAndCraft/
|
|
|
|
commands:
|
|
|
|
commands:
|
|
|
|
- export PATH=$PATH:/opt/sonar-scanner/sonar-scanner-4.5.0.2216-linux/bin
|
|
|
|
- export SONAR_SCANNER_VERSION=4.7.0.2747
|
|
|
|
- sonar-scanner
|
|
|
|
- export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux
|
|
|
|
|
|
|
|
- curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip
|
|
|
|
|
|
|
|
- unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
|
|
|
|
|
|
|
|
- export PATH=$SONAR_SCANNER_HOME/bin:$PATH
|
|
|
|
|
|
|
|
- export SONAR_SCANNER_OPTS="-server"
|
|
|
|
|
|
|
|
- sonar-scanner -D sonar.projectKey=ShakeAndCraft -D sonar.sources=. -D sonar.host.url=https://codefirst.iut.uca.fr/sonar
|