diff options
| author | nagachika <nagachika@ruby-lang.org> | 2025-10-18 12:20:06 +0900 |
|---|---|---|
| committer | nagachika <nagachika@ruby-lang.org> | 2025-10-18 12:20:09 +0900 |
| commit | 4a09da622a8aabb3d2e68cf38addf544a5c06c13 (patch) | |
| tree | 1e4f77945c07082c69f2684acf039b2f4187f6da | |
| parent | e526fbe770909974f610b7a2a00bd8d5dd045f1f (diff) | |
partially merge revision 949573028b127931cb034a2928ef80a59c45ea43:
[PATCH] Win32: OpenSSL 1.1 DLLs are no longer used
We are already using OpenSSL 3.3 and have no possibility to use system
provided DLLs.
| -rw-r--r-- | .github/workflows/windows.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 164c8c8624..3535a00b5e 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -149,14 +149,6 @@ jobs: for %%I in (C:\vcpkg\installed\x64-windows\bin\*.dll) do ( if not %%~nI == readline mklink %%~nxI %%I ) - # We use OpenSSL instealled by vcpkg instead - - name: disable system OpenSSL - run: | - for %%I in (libcrypto-1_1-x64 libssl-1_1-x64) do ( - ren c:\Windows\System32\%%I.dll %%I.dll_ - ) - # windows-2019 image doesn't have OpenSSL as of 2023/9/14 - if: ${{ matrix.vs != 2019 }} - name: Configure run: >- |
