Skip to content

Commit d9a49e1

Browse files
committed
test
1 parent 1def31c commit d9a49e1

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -947,6 +947,23 @@ jobs:
947947
with:
948948
submodules: true
949949
- uses: ./.github/actions/install-rust
950+
- name: Inspect OpenSSL install (test)
951+
if: runner.os == 'Windows'
952+
run: |
953+
dir "C:\Program Files\OpenSSL"
954+
dir "C:\Program Files\OpenSSL\bin"
955+
dir "C:\Program Files\OpenSSL\lib"
956+
dir "C:\Program Files\OpenSSL\include"
957+
dir "C:\Program Files\OpenSSL\tests"
958+
dir "C:\Program Files\OpenSSL\exp"
959+
- name: Install OpenSSL (Windows)
960+
if: runner.os == 'Windows'
961+
shell: powershell
962+
run: |
963+
$opensslCertFile = "C:\Program Files\OpenSSL\certs\ca-bundle.crt"
964+
"SSL_CERT_FILE=$opensslCertFile" | Out-File -FilePath $env:GITHUB_ENV -Append
965+
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
966+
vcpkg install openssl:x64-windows-static-md
950967
- run: cargo test -p wasmtime-wasi-tls-openssl
951968
- run: cargo test -p wasmtime-wasi-tls-nativetls
952969

0 commit comments

Comments
 (0)