Skip to content

Commit efb961e

Browse files
committed
Fix
1 parent c06061e commit efb961e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/sonar_cloud.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ jobs:
3535

3636
- name: Run build-wrapper
3737
run: |
38-
mkdir build
39-
cmake -S compiler/extensions/cpp/runtime/src -B build
40-
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} cmake --build build/ --config Release
38+
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} \
39+
scripts/build.sh cpp zserio cpp_rt-linux64-gcc && scripts/release.sh
40+
env:
41+
CMAKE_EXTRA_ARGS: "-DCMAKE_BUILD_TYPE=Release"
42+
CMAKE_BUILD_OPTIONS: "-j4"
4143

4244
- name: Run sonar-scanner
4345
env:

sonar-project.properties

+2
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ sonar.organization=ndsev
44

55
sonar.sources=compiler/extensions/cpp/runtime/src
66

7+
sonar.tests=compiler/extensions/cpp/runtime/test
8+
79
sonar.sourceEncoding=UTF-8

0 commit comments

Comments
 (0)