Skip renaming OpenSSL DLLs
to fix CI failures like: https://github.com/ruby/ruby/actions/runs/6190995187/job/16808382442
This commit is contained in:
parent
1961c5bb76
commit
07b615bb3b
5
.github/workflows/windows.yml
vendored
5
.github/workflows/windows.yml
vendored
@ -147,9 +147,14 @@ jobs:
|
|||||||
for %%I in (C:\vcpkg\installed\x64-windows\bin\*.dll) do (
|
for %%I in (C:\vcpkg\installed\x64-windows\bin\*.dll) do (
|
||||||
if not %%~nI == readline mklink %%~nxI %%I
|
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 (
|
for %%I in (libcrypto-1_1-x64 libssl-1_1-x64) do (
|
||||||
ren c:\Windows\System32\%%I.dll %%I.dll_
|
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
|
- name: Configure
|
||||||
run: >-
|
run: >-
|
||||||
|
Loading…
x
Reference in New Issue
Block a user