Skip to content

Commit 064c307

Browse files
committed
Revert "Set CPR_CURL_USE_LIBPSL=OFF for NuGet builds"
This reverts commit e2f71bb.
1 parent 9fae7ca commit 064c307

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-nuget.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ jobs:
6161

6262
- name: Configure & build Release x86
6363
run: |
64-
cmake -S . -B build-release-x86 -G "Visual Studio 17 2022" -A Win32 -DCMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE/nuget/build/native/x86/Release" -DBUILD_SHARED_LIBS=ON -DCURL_ZLIB=OFF -DCPR_CURL_USE_LIBPSL=OFF -DCMAKE_BUILD_TYPE=Release
64+
cmake -S . -B build-release-x86 -G "Visual Studio 17 2022" -A Win32 -DCMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE/nuget/build/native/x86/Release" -DBUILD_SHARED_LIBS=ON -DCURL_ZLIB=OFF -DCMAKE_BUILD_TYPE=Release
6565
cmake --build build-release-x86 --target install
6666
6767
- name: Configure & build Debug x86
6868
run: |
69-
cmake -S . -B build-debug-x86 -G "Visual Studio 17 2022" -A Win32 -DCMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE/nuget/build/native/x86/Debug" -DBUILD_SHARED_LIBS=ON -DCURL_ZLIB=OFF -DCPR_CURL_USE_LIBPSL=OFF -DCMAKE_BUILD_TYPE=Debug
69+
cmake -S . -B build-debug-x86 -G "Visual Studio 17 2022" -A Win32 -DCMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE/nuget/build/native/x86/Debug" -DBUILD_SHARED_LIBS=ON -DCURL_ZLIB=OFF -DCMAKE_BUILD_TYPE=Debug
7070
cmake --build build-debug-x86 --target install
7171
7272
# ─────────────────────────────── Build x64 ─────────────────────────────────
@@ -77,12 +77,12 @@ jobs:
7777

7878
- name: Configure & build Release x64
7979
run: |
80-
cmake -S . -B build-release-x64 -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE/nuget/build/native/x64/Release" -DBUILD_SHARED_LIBS=ON -DCURL_ZLIB=OFF -DCPR_CURL_USE_LIBPSL=OFF -DCMAKE_BUILD_TYPE=Release
80+
cmake -S . -B build-release-x64 -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE/nuget/build/native/x64/Release" -DBUILD_SHARED_LIBS=ON -DCURL_ZLIB=OFF -DCMAKE_BUILD_TYPE=Release
8181
cmake --build build-release-x64 --target install
8282
8383
- name: Configure & build Debug x64
8484
run: |
85-
cmake -S . -B build-debug-x64 -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE/nuget/build/native/x64/Debug" -DBUILD_SHARED_LIBS=ON -DCURL_ZLIB=OFF -DCPR_CURL_USE_LIBPSL=OFF -DCMAKE_BUILD_TYPE=Debug
85+
cmake -S . -B build-debug-x64 -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE/nuget/build/native/x64/Debug" -DBUILD_SHARED_LIBS=ON -DCURL_ZLIB=OFF -DCMAKE_BUILD_TYPE=Debug
8686
cmake --build build-debug-x64 --target install
8787
8888
# ────────────────────────── Pack, push, artefact ─────────────────────────────

0 commit comments

Comments
 (0)