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 377e0abCopy full SHA for 377e0ab
.github/workflows/main.yml
@@ -947,6 +947,12 @@ 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
+ echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
955
+ echo "OPENSSL_DIR='C:\Program Files\OpenSSL\lib'" | Out-File -FilePath $env:GITHUB_ENV -Append
956
- run: cargo test -p wasmtime-wasi-tls-openssl
957
- run: cargo test -p wasmtime-wasi-tls-nativetls
958
0 commit comments