File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -947,6 +947,23 @@ jobs:
947947 with :
948948 submodules : true
949949 - uses : ./.github/actions/install-rust
950+ - name : Inspect OpenSSL install (test)
951+ if : runner.os == 'Windows'
952+ run : |
953+ dir "C:\Program Files\OpenSSL"
954+ dir "C:\Program Files\OpenSSL\bin"
955+ dir "C:\Program Files\OpenSSL\lib"
956+ dir "C:\Program Files\OpenSSL\include"
957+ dir "C:\Program Files\OpenSSL\tests"
958+ dir "C:\Program Files\OpenSSL\exp"
959+ - name : Install OpenSSL (Windows)
960+ if : runner.os == 'Windows'
961+ shell : powershell
962+ run : |
963+ $opensslCertFile = "C:\Program Files\OpenSSL\certs\ca-bundle.crt"
964+ "SSL_CERT_FILE=$opensslCertFile" | Out-File -FilePath $env:GITHUB_ENV -Append
965+ echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
966+ vcpkg install openssl:x64-windows-static-md
950967 - run : cargo test -p wasmtime-wasi-tls-openssl
951968 - run : cargo test -p wasmtime-wasi-tls-nativetls
952969
You can’t perform that action at this time.
0 commit comments