Documentation
continuous-integration/drone/push Build is failing Details

newBranch
Victor Perez NGOUNOU 2 years ago
parent d40acfdb9e
commit 1d8847e693

@ -18,7 +18,7 @@ steps:
- dotnet publish "TP Blazor".sln -c Release --no-restore -o CI_PROJECT_DIR/build/release
- name: code-analysis
image: pubhub.codefirst.ddns.net/thbellem/codefirst-dronesonarplugin-dotnet5
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dronesonarplugin-dotnet6
commands:
- dotnet restore "TP Blazor".sln
- dotnet sonarscanner begin /k:TestTemplate /d:sonar.host.url=$${PLUGIN_SONAR_HOST} /d:sonar.coverageReportPaths="coveragereport/SonarQube.xml" /d:sonar.coverage.exclusions="Tests/**" /d:sonar.login=$${PLUGIN_SONAR_TOKEN}
@ -36,6 +36,21 @@ steps:
from_secret: SECRET_SONAR_LOGIN
depends_on: [build]
- name: generate-and-deploy-docs
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-docdeployer
failure: ignore
volumes:
- name: docs
path: /docs
commands:
- cd Documentation/doxygen
- doxygen Doxyfile
- /entrypoint.sh
when:
branch:
- master
depends_on: [ build ]
- name: docker-build
image: plugins/docker

Loading…
Cancel
Save