Skip to content

Commit a99933a

Browse files
committed
Using system curl and psl for deb builds
1 parent 6213cec commit a99933a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-deb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: "Update package list"
1919
run: sudo apt update
2020
- name: "Install cpr dependencies"
21-
run: sudo apt install -y libssl-dev libcurl4-openssl-dev libpsl-dev meson
21+
run: sudo apt install -y libssl-dev libcurl4-openssl-dev libpsl-dev
2222
- name: "Install building tools"
2323
run: sudo apt install -y cmake debmake devscripts debhelper
2424
# Set version number
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
mkdir -p cpr/build
3232
pushd cpr/build
33-
cmake .. -DCPR_BUILD_VERSION_OUTPUT_ONLY=ON
33+
cmake .. -DCPR_BUILD_VERSION_OUTPUT_ONLY=ON -DCPR_USE_SYSTEM_LIB_PSL=ON -DCPR_USE_SYSTEM_CURL=ON
3434
echo "RELEASE_VERSION=$(cat version.txt)" >> $GITHUB_ENV
3535
popd
3636
rm -rf cpr/build

0 commit comments

Comments
 (0)