We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecb086e commit a03c893Copy full SHA for a03c893
.github/workflows/sonarcube.yml
@@ -17,10 +17,16 @@ jobs:
17
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
18
- name: Install Build Wrapper
19
uses: SonarSource/sonarqube-scan-action/install-build-wrapper@v4
20
+
21
+ - name: Install Dependencies
22
+ run: |
23
+ sudo apt-get update
24
+ sudo apt-get install -y libzmq3-dev libsqlite3-dev
25
26
- name: Run Build Wrapper
27
run: |
28
mkdir build
- cmake -S . -B build
29
+ cmake -S . -B build -DBTCPP_UNIT_TESTS=OFF
30
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} cmake --build build/ --config Release
31
- name: SonarQube Scan
32
uses: SonarSource/sonarqube-scan-action@v4
0 commit comments