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 b06ca05Copy full SHA for b06ca05
.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=$env: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