We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1def31c commit 64889d1Copy full SHA for 64889d1
.github/workflows/main.yml
@@ -947,6 +947,14 @@ jobs:
947
with:
948
submodules: true
949
- uses: ./.github/actions/install-rust
950
+ - name: Install OpenSSL (Windows)
951
+ if: runner.os == 'Windows'
952
+ shell: powershell
953
+ run: |
954
+ $opensslCertFile = "C:\Program Files\OpenSSL\certs\ca-bundle.crt"
955
+ "SSL_CERT_FILE=$opensslCertFile" | Out-File -FilePath $env:GITHUB_ENV -Append
956
+ echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
957
+ vcpkg install openssl:x64-windows-static-md
958
- run: cargo test -p wasmtime-wasi-tls-openssl
959
- run: cargo test -p wasmtime-wasi-tls-nativetls
960
0 commit comments