From b429533fdfa15ef55c15d8918a956e17258ba190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Mouyon?= Date: Fri, 3 May 2024 17:58:39 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'.drone.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 40f61c9..c1b78b1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -18,7 +18,7 @@ steps: - name: tests image: mcr.microsoft.com/dotnet/sdk:8.0 commands: - - cd Sources/ + - cd ./Qwirkle - dotnet restore QwirkleWithoutMaui.sln - dotnet test QwirkleWithoutMaui --no-restore depends_on: [build] @@ -32,7 +32,7 @@ steps: sonar_token: from_secret: SECRET_SONAR_LOGIN commands: - - cd Sources/ + - cd ./Qwirkle - dotnet restore QwirkleWithoutMaui.sln - dotnet sonarscanner begin /k:QwirkleSonar /d:sonar.host.url=$${PLUGIN_SONAR_HOST} /d:sonar.coverageReportPaths="coveragereport/SonarQube.xml" /d:sonar.coverage.exclusions="Tests/**" /d:sonar.login=$${PLUGIN_SONAR_TOKEN} - dotnet build QwirkleWithoutMaui.sln -c Release --no-restore