You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
859 B
25 lines
859 B
kind: pipeline
|
|
type: docker
|
|
name: CICD
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: code-analysis
|
|
image: openjdk:8-jdk
|
|
environment:
|
|
SONAR_TOKEN:
|
|
from_secret: SECRET_TOKEN
|
|
settings:
|
|
sources: ./src/
|
|
commands:
|
|
- export SONAR_SCANNER_VERSION=4.7.0.2747
|
|
- 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=allin_droid -D sonar.sources=./src -D sonar.host.url=https://codefirst.iut.uca.fr/sonar
|