Skip to content

Commit 1a3fac9

Browse files
authored
Install and verify OpenSSL in Windows workflow
Added steps to install and verify OpenSSL in the workflow.
1 parent 1709ac8 commit 1a3fac9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/windows.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,13 @@ jobs:
4848
path: bridge/webui_bridge.h
4949
key: ${{ runner.os }}-${{ github.sha }}-bridge
5050
fail-on-cache-miss: true
51+
- name: Install OpenSSL
52+
shell: pwsh
53+
run: |
54+
irm https://raw.githubusercontent.com/actions/runner-images/main/images/win/scripts/Installers/Install-OpenSSL.ps1 | iex
55+
- name: Verify OpenSSL
56+
shell: pwsh
57+
run: dir "C:\Program Files\OpenSSL\lib"
5158
- uses: microsoft/setup-msbuild@v2
5259
- uses: ilammy/msvc-dev-cmd@v1
5360
if: matrix.cc == 'msvc'

0 commit comments

Comments
 (0)