Skip to content

Commit 13096bb

Browse files
committed
ci: add pkg-config and nettle on windows
Signed-off-by: Luca Muscariello <muscariello@ieee.org>
1 parent c7a74ce commit 13096bb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ jobs:
2929
run: |
3030
$vcpkgRoot = $env:VCPKG_INSTALLATION_ROOT
3131
if (-not $vcpkgRoot) { $vcpkgRoot = "C:\vcpkg" }
32-
& "$vcpkgRoot\vcpkg.exe" install openssl:x64-windows
32+
& "$vcpkgRoot\vcpkg.exe" install openssl:x64-windows nettle:x64-windows
33+
choco install -y pkgconfiglite
3334
"OPENSSL_DIR=$vcpkgRoot\installed\x64-windows" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
35+
"PKG_CONFIG_PATH=$vcpkgRoot\installed\x64-windows\lib\pkgconfig" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
3436
- name: Install Linux dependencies
3537
if: runner.os == 'Linux'
3638
run: sudo apt-get update && sudo apt-get install -y pkg-config nettle-dev

0 commit comments

Comments
 (0)