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.

19 lines
433 B

kind: pipeline
type: docker
name: FavorPipeline
trigger:
event:
- push
steps:
- name: code-analysis
environment:
SONAR_TOKEN:
from_secret: sonar_token
settings:
sources: ./SiteWeb
commands:
- cd SiteWeb
- ./gradlew sonarqube -Dsonar .projectKey=Favor -Dsonar.host.url=https://codefirst.iut.uca.fr/sonar -Dsonar.login=$${SONAR_TOKEN}
depends_on: [ app-build, api-build ]