We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8785107 commit 68f6c1eCopy full SHA for 68f6c1e
.github/workflows/sonar_cloud.yml
@@ -35,11 +35,9 @@ jobs:
35
36
- name: Run build-wrapper
37
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"
+ mkdir build
+ cmake -S compiler/extensions/cpp/runtime/src -B build
+ build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} cmake --build build/ --config Release
43
44
- name: Run sonar-scanner
45
env:
0 commit comments