File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -947,6 +947,19 @@ 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\certs"
955+ - name : Install OpenSSL (Windows)
956+ if : runner.os == 'Windows'
957+ shell : powershell
958+ run : |
959+ $opensslCertFile = "C:\Program Files\OpenSSL\certs\ca-bundle.crt"
960+ "SSL_CERT_FILE=$opensslCertFile" | Out-File -FilePath $env:GITHUB_ENV -Append
961+ echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
962+ vcpkg install openssl:x64-windows-static-md
950963 - run : cargo test -p wasmtime-wasi-tls-openssl
951964 - run : cargo test -p wasmtime-wasi-tls-nativetls
952965
You can’t perform that action at this time.
0 commit comments