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 7b76521Copy full SHA for 7b76521
.github/workflows/main.yml
@@ -947,6 +947,12 @@ jobs:
947
with:
948
submodules: true
949
- uses: ./.github/actions/install-rust
950
+ - name: Set OpenSSL path (Windows)
951
+ if: runner.os == 'Windows'
952
+ shell: powershell
953
+ run: |
954
+ $opensslPath = "C:\Program Files\OpenSSL"
955
+ "OPENSSL_DIR=$opensslPath" | 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