Skip to content

Commit 22ba26f

Browse files
committed
ci: install openssl for windows
Signed-off-by: Luca Muscariello <muscariello@ieee.org>
1 parent 9b7ab91 commit 22ba26f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ jobs:
2323
uses: actions/setup-python@v5
2424
with:
2525
python-version: "3.12"
26+
- name: Setup vcpkg (Windows)
27+
if: runner.os == 'Windows'
28+
uses: ilammy/setup-vcpkg@v1
29+
- name: Install Windows dependencies
30+
if: runner.os == 'Windows'
31+
shell: pwsh
32+
run: |
33+
vcpkg install openssl:x64-windows
34+
"OPENSSL_DIR=$env:VCPKG_INSTALLATION_ROOT\installed\x64-windows" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
2635
- name: Install Linux dependencies
2736
if: runner.os == 'Linux'
2837
run: sudo apt-get update && sudo apt-get install -y pkg-config nettle-dev

0 commit comments

Comments
 (0)