We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b7ab91 commit 22ba26fCopy full SHA for 22ba26f
.github/workflows/ci.yml
@@ -23,6 +23,15 @@ jobs:
23
uses: actions/setup-python@v5
24
with:
25
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
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
35
- name: Install Linux dependencies
36
if: runner.os == 'Linux'
37
run: sudo apt-get update && sudo apt-get install -y pkg-config nettle-dev
0 commit comments