Skip to content

Commit

Permalink
Merge pull request #712 from junaruga/wip/win-3.3-legacy-provider-not…
Browse files Browse the repository at this point in the history
…-loaded

Windows Ruby 3.3: Workaround: Set OPENSSL_MODULES to find providers.
  • Loading branch information
junaruga committed Jan 11, 2024
2 parents 1fa9fc5 + 7aed35a commit 2c1add3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -52,10 +52,10 @@ jobs:
if: ${{ !matrix.skip-warnings }}

# Enable provider search path for OpenSSL 3.0 in MSYS2.
# Remove when Ruby 3.2 build is updated
# Remove when Ruby 3.2, and 3.3 builds are updated.
- 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'
if: runner.os == 'Windows' && (matrix.ruby == '3.2' || matrix.ruby == '3.3')

- name: compile
run: rake compile
Expand Down

0 comments on commit 2c1add3

Please sign in to comment.