diff options
| -rw-r--r-- | .github/workflows/windows.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 54a04cc3..2a031b2b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -18,7 +18,9 @@ jobs: github-binarycache: true - name: Configure - run: cmake ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} -D NNG_ENABLE_TLS=ON -B build + # TLS on Windows is not good because vcpkg is *old* mbedTLS 2.28, and we don't pass some newer tests. + # We should explore testing WolfSSL here instead. + run: cmake ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} -B build - name: Build run: cmake --build build |
