-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #309 from Infomaniak/kdesktop-1233-let-the-windows…
…-ci-runner-launch-sonar-scanner-and-run-bullseye-coverage-analysis [KDESKTOP-1223] Let the Windows CI runner manage the Sonar Cloud analysis, including code coverage
- Loading branch information
Showing
2 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,16 @@ jobs: | |
runs-on: [ self-hosted, Windows, desktop-kdrive ] | ||
|
||
steps: | ||
- name: Load system Path into Github environment | ||
run : echo Path=%Path%>> %GITHUB_ENV% | ||
shell: cmd | ||
|
||
- name: Checkout the PR | ||
uses: actions/[email protected] | ||
with: | ||
ref: ${{ github.head_ref }} | ||
submodules: recursive | ||
|
||
- name: Clean the log directory | ||
run : rm -r -force C:/Windows/Temp/kDrive-logdir/* | ||
|
||
|
@@ -48,11 +52,46 @@ jobs: | |
- name: Build kDrive desktop | ||
run: | | ||
call "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Auxiliary/Build/vcvars64.bat" | ||
set COVFILE=%cd%\src\test.cov | ||
call "cov01.exe" -1 | ||
powershell ./infomaniak-build-tools/windows/build-drive.ps1 -ci | ||
shell: cmd | ||
|
||
- name: Execute tests | ||
run: ./infomaniak-build-tools/run-tests.ps1 | ||
run: | | ||
$env:COVFILE="$pwd\src\test.cov" | ||
& "cov01.exe" "-1" # coverage on | ||
./infomaniak-build-tools/run-tests.ps1 | ||
- name: Compute code coverage | ||
run : | | ||
rm -Force -ErrorAction SilentlyContinue BullseyeCoverageExclusions | ||
echo "exclude folder 3rdparty/\nexclude folder ../" >> BullseyeCoverageExclusions | ||
$env:COVFILE="$pwd\src\test.cov" | ||
& "cov01.exe" "-0" # coverage off | ||
& "covselect.exe" "--import" "BullseyeCoverageExclusions" | ||
& "covxml.exe" "-f" "$env:COVFILE" "-o" "coverage.xml" | ||
- name: Install sonar-scanner | ||
uses: SonarSource/sonarcloud-github-c-cpp@v3 | ||
env: | ||
SONAR_HOST_URL: https://sonarcloud.io | ||
|
||
- name: Run sonar-scanner | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_DESKTOP_KDRIVE_TOKEN }} | ||
SONAR_HOST_URL: https://sonarcloud.io | ||
run: > | ||
sonar-scanner | ||
--define sonar.projectKey="Infomaniak_desktop-kDrive" | ||
--define sonar.organization="infomaniak" | ||
--define sonar.host.url="https://sonarcloud.io" | ||
--define sonar.sources="src" | ||
--define sonar.exclusions="src/3rdparty/**" | ||
--define sonar.cfamily.compile-commands="build-windows/build/compile_commands.json" | ||
--define sonar.cfamily.bullseye.reportPaths="coverage.xml" | ||
- name: Upload tests logs artifacts | ||
uses: actions/upload-artifact@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters