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.
WF-WebAdmin/.drone.yml

80 lines
2.8 KiB

kind: pipeline
type: docker
name: CI
trigger:
event:
- push
steps:
- name: build
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dronesonarplugin-dotnet6
commands:
- cd WF-WebAdmin/WF-WebAdmin
- dotnet restore WF-WebAdmin.csproj
- dotnet build WF-WebAdmin.csproj -c Release --no-restore
- dotnet publish WF-WebAdmin.csproj -c Release --no-restore -o $CI_PROJECT_DIR/build/publish
- name: tests
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dronesonarplugin-dotnet6
commands:
- cd WF-WebAdmin/WF-WebAdmin
- dotnet restore WF-WebAdmin.csproj
- dotnet test WF-WebAdmin.csproj --no-restore
depends_on: [ build ]
- name: code-inspection
# On garde l'image du prof, comme demandé
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dronesonarplugin-dotnet6
secrets: [ sonar_tocken ]
environment:
sonar_host: https://codefirst.iut.uca.fr/sonar/
sonar_token:
from_secret: sonar_tocken
project_key: "web_admin" # mettre ici votre vraie clé sonar
coverage_exclusions: "Tests/**" # ou tout autre dossier à exclure
commands:
# Se placer dans votre répertoire de projet
- cd WF-WebAdmin/WF-WebAdmin
# Restauration des dépendances
- dotnet restore WF-WebAdmin.csproj
# Démarrage de l'analyse SonarQube
- dotnet sonarscanner begin /k:$${project_key} /d:sonar.host.url=$${sonar_host} /d:sonar.coverageReportPaths="coveragereport/SonarQube.xml" /d:sonar.coverage.exclusions=$${coverage_exclusions} /d:sonar.login=$${sonar_token}
# Build en Release
- dotnet build WF-WebAdmin.csproj -c Release --no-restore
# Exécution des tests avec collecte de couverture Cobertura
- dotnet test WF-WebAdmin.csproj --logger trx --no-restore \
/p:CollectCoverage=true \
/p:CoverletOutputFormat=cobertura \
--collect "XPlat Code Coverage"
# Génération du rapport SonarQube à partir du Cobertura
- reportgenerator -reports:"**/coverage.cobertura.xml" -reporttypes:SonarQube -targetdir:"coveragereport"
# (Optionnel) Publication de l'appli si vous en avez besoin
- dotnet publish WF-WebAdmin.csproj -c Release --no-restore -o $CI_PROJECT_DIR/build/release
# Fin de l'analyse SonarQube
- dotnet sonarscanner end /d:sonar.login=$${sonar_token}
- name: docker_build
image: plugins/docker
settings:
repo: hub.codefirst.iut.uca.fr/whatthefantasy/wf-webadmin
registry: hub.codefirst.iut.uca.fr
dockerfile: Docker/Dockerfile
tags:
- latest
username:
from_secret: docker_username
password:
from_secret: docker_password
depends_on: [ build, tests, code-inspection ]