Skip to content

Improve code coverage results #634

Improve code coverage results

Improve code coverage results #634

Workflow file for this run

name: Sonar
on:
push:
branches:
- main
- sonar
pull_request:
types: [opened, synchronize, reopened]
# Ensure that only one instance of the workflow is run at a time for each branch/tag.
# Jobs currently running on the branch/tag will be cancelled when new commits are pushed.
# See https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#concurrency.
concurrency:
# `github.workflow` is the workflow name, `github.ref` is the current branch/tag identifier
group: ${{ format('{0}:{1}', github.workflow, github.ref) }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
env:
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install gcovr
run: pip install gcovr==8.2
- name: Install sonar-scanner and build-wrapper
uses: SonarSource/sonarcloud-github-c-cpp@v3
- name: Install CMake
uses: lukka/[email protected]
with:
cmakeVersion: 3.30.5
ninjaVersion: 1.11.1
- name: Setup CCache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: 100M
- name: Configure CMake
run: |
cmake -E make_directory build
cmake -S . -B build \
-GNinja \
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_BUILD_TYPE=Debug \
-DBUILD_TESTS=ON \
-DCI_BUILD=ON \
-DENABLE_COVERAGE=ON \
-DENABLE_CLANG_TIDY=OFF
- name: Build the code in debug mode
timeout-minutes: 30
run: cmake --build build/ --config Debug
- name: Run tests to generate coverage statistics
timeout-minutes: 10
working-directory: build
run: ninja run_all_tests -k 0
- name: Test Summary
if: ${{ !cancelled() }}
uses: test-summary/action@v2
with:
paths: "build/reports/tests/*.junit.xml"
- name: Collect coverage into one XML report
if: ${{ !cancelled() }}
run: |
gcovr \
--root . \
--object-directory build \
--force-color \
--no-markers \
--decisions \
--calls \
--exclude-noncode-lines \
--gcov-ignore-parse-errors negative_hits.warn \
--sonarqube "coverage.xml"
- name: Run sonar-scanner
if: ${{ !cancelled() }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
sonar-scanner \
--define sonar.projectKey=Fastcode_NUClear \
--define sonar.organization=fastcode \
--define sonar.sources=src \
--define sonar.tests=tests \
--define sonar.cfamily.compile-commands=build/compile_commands.json \
--define sonar.coverageReportPaths=coverage.xml
- name: Upload Traces
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: traces-sonar
path: build/tests/**/*.trace
retention-days: 1 # This sets the artifact TTL to 1 day (minimum is 1 day)
overwrite: true