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