Skip to content

Commit a03c893

Browse files
committed
fix
1 parent ecb086e commit a03c893

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/sonarcube.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,16 @@ jobs:
1717
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1818
- name: Install Build Wrapper
1919
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+
2026
- name: Run Build Wrapper
2127
run: |
2228
mkdir build
23-
cmake -S . -B build
29+
cmake -S . -B build -DBTCPP_UNIT_TESTS=OFF
2430
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} cmake --build build/ --config Release
2531
- name: SonarQube Scan
2632
uses: SonarSource/sonarqube-scan-action@v4

0 commit comments

Comments
 (0)