-
Notifications
You must be signed in to change notification settings - Fork 11
111 lines (99 loc) · 3.5 KB
/
sonarcloud.yaml
File metadata and controls
111 lines (99 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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-24.04
container: silkeh/clang:18
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 Prerequisites
run: |
apt-get update
apt-get install -y \
ccache \
unzip
- name: Install CMake
uses: lukka/get-cmake@v3.30.5
with:
cmakeVersion: 3.30.5
ninjaVersion: 1.11.1
- name: Setup CCache
uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ github.job }}
max-size: 100M
- name: Configure CMake
env:
CXXFLAGS: -DNUCLEAR_TEST_TIME_UNIT_DEN=10
run: |
cmake -E make_directory build
cmake -S . -B build \
-GNinja \
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_TESTS=ON \
-DCI_BUILD=ON \
-DENABLE_COVERAGE=ON \
-DENABLE_CLANG_TIDY=OFF
- name: Build the code
timeout-minutes: 30
run: cmake --build build/ --config Release
- name: Run tests to generate coverage statistics
timeout-minutes: 10
working-directory: build
run: ninja coverage -k 0
- name: Test Summary
if: ${{ !cancelled() }}
uses: test-summary/action@v2
with:
paths: "build/reports/tests/*.junit.xml"
- name: Upload coverage report
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: coverage
path: build/reports/coverage.txt
retention-days: 1 # This sets the artifact TTL to 1 day (minimum is 1 day)
overwrite: true
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v5
if: ${{ !cancelled() }}
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
--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.cfamily.llvm-cov.reportPath=build/reports/coverage.txt
- 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