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.
15 lines
555 B
15 lines
555 B
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
steps:
|
|
- name: sonar-analyses
|
|
image: hub.codefirst.iut.uca.fr/camille.petitalot/drone-sonarplugin-reactnative:latest
|
|
environment:
|
|
sonar_host: https://codefirst.iut.uca.fr/sonar/
|
|
sonar_token:
|
|
from_secret: SECRET_SONAR_LOGIN
|
|
project_key: JokesApp
|
|
commands:
|
|
- cd JokesApp
|
|
- npm install
|
|
- sonar-scanner -Dsonar-projectkey=$${project_key} -Dsonar.sources=. -Dsonar.host.url=$${sonar_host} -Dsonar. login=$${sonar_token} |