Skip to content

Commit c06061e

Browse files
committed
[#573] Remove calling scripts from sonad cloud yml file
1 parent 8785107 commit c06061e

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/sonar_cloud.yml

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

3636
- name: Run build-wrapper
3737
run: |
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 && scripts/test.sh cpp-linux64-gcc
40-
env:
41-
CMAKE_EXTRA_ARGS: "-DCMAKE_BUILD_TYPE=Release"
42-
CMAKE_BUILD_OPTIONS: "-j4"
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
4341
4442
- name: Run sonar-scanner
4543
env:

sonar-project.properties

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

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

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

0 commit comments

Comments
 (0)