Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,11 @@ jobs:
run: echo "RUBY_OPENSSL_EXTCFLAGS=-Werror" >> $GITHUB_ENV
if: ${{ !matrix.skip-warnings }}

# Enable provider search path for OpenSSL 3.0 in MSYS2.
# Remove when Ruby 3.2, and 3.3 builds are updated.
# Workaround: Enable provider search path to load the legacy provider
# (legacy.dll) in OpenSSL 3 in Windows MSYS2.
# Remove the workaround when the issue is fixed in Ruby 3.2 and 3.3
# builds.
# https://github.com/oneclick/rubyinstaller2/issues/365
- name: enable windows provider search path
run: echo "OPENSSL_MODULES=$($env:RI_DEVKIT)\$($env:MSYSTEM_PREFIX)\lib\ossl-modules" >> $env:GITHUB_ENV
if: runner.os == 'Windows' && (matrix.ruby == '3.2' || matrix.ruby == '3.3')
Expand Down