Skip to content

Commit cc6e860

Browse files
committed
test
1 parent 1def31c commit cc6e860

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)