Skip to content

Commit 68f6c1e

Browse files
committed
Fix
1 parent 8785107 commit 68f6c1e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
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:

0 commit comments

Comments
 (0)