Skip to content

Commit 7fbb003

Browse files
committed
Install libcurl as part of the build steps
1 parent 17f3784 commit 7fbb003

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/code-quality.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ jobs:
2929
- name: Checkout repository
3030
uses: actions/checkout@v3
3131

32+
# Install libcurl dependency
33+
- name: Install dependencies
34+
run: sudo apt install -y libcurl4-openssl-dev
35+
36+
3237
# Initializes the CodeQL tools for scanning.
3338
- name: Initialize CodeQL
3439
uses: github/codeql-action/init@v2
@@ -44,7 +49,7 @@ jobs:
4449

4550
- run: |
4651
echo "Run, CMake build script"
47-
cmake -B ${{github.workspace}}/build -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=OFF
52+
cmake -B ${{github.workspace}}/build -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=OFF
4853
4954
- name: Perform CodeQL Analysis
5055
uses: github/codeql-action/analyze@v2

0 commit comments

Comments
 (0)