From 07b615bb3b55d1ab6548d1abf77aa8bc25bbb3e1 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Thu, 14 Sep 2023 15:02:10 -0700 Subject: Skip renaming OpenSSL DLLs to fix CI failures like: https://github.com/ruby/ruby/actions/runs/6190995187/job/16808382442 --- .github/workflows/windows.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.github/workflows/windows.yml') diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b686cea295..b3362ac475 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -147,9 +147,14 @@ 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: >- -- cgit v1.2.3