diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2024-07-14 19:18:09 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2024-07-14 19:18:09 +0900 |
| commit | 949573028b127931cb034a2928ef80a59c45ea43 (patch) | |
| tree | 6deacf559b8a80910c53f6f8cfec25489ba5f129 | |
| parent | 880b7f15139c0676fda489599e104c6a7c698d59 (diff) | |
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 | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index aa72b671a4..cb492aebc3 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -149,15 +149,6 @@ jobs: env: VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" - # 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 }} - # TODO: We should use `../src` instead of `D:/a/ruby/ruby/src` - name: Configure run: >- |
