We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7a74ce commit 13096bbCopy full SHA for 13096bb
.github/workflows/ci.yml
@@ -29,8 +29,10 @@ jobs:
29
run: |
30
$vcpkgRoot = $env:VCPKG_INSTALLATION_ROOT
31
if (-not $vcpkgRoot) { $vcpkgRoot = "C:\vcpkg" }
32
- & "$vcpkgRoot\vcpkg.exe" install openssl:x64-windows
+ & "$vcpkgRoot\vcpkg.exe" install openssl:x64-windows nettle:x64-windows
33
+ choco install -y pkgconfiglite
34
"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
36
- name: Install Linux dependencies
37
if: runner.os == 'Linux'
38
run: sudo apt-get update && sudo apt-get install -y pkg-config nettle-dev
0 commit comments