From 58ce7fa4b90ca179307142f45687f7d802aca548 Mon Sep 17 00:00:00 2001 From: qwyng Date: Mon, 12 Jun 2023 08:19:12 +0900 Subject: [PATCH] .github/workflows/test.yml: add provider load path for Windows Co-authored-by: MSP-Greg --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7b9e01665..36609e217 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,6 +51,12 @@ 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 build is 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' + - name: compile run: rake compile -- --enable-debug