Skip to content

Commit

Permalink
[MSWin] Install libyaml using vcpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Feb 7, 2022
1 parent a07fa19 commit 65ccae5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
${{ runner.os }}-vcpkg-installed-
- name: Install libraries with vcpkg
run: |
vcpkg --triplet x64-windows install libffi readline zlib
vcpkg --triplet x64-windows install libffi libyaml readline zlib
- uses: actions/cache@v2
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
Expand Down Expand Up @@ -104,7 +104,9 @@ jobs:
set | C:\msys64\usr\bin\sort > new.env
C:\msys64\usr\bin\comm -13 old.env new.env >> %GITHUB_ENV%
del *.env
for %%I in (libffi) do mklink %%I.dll C:\vcpkg\installed\x64-windows\bin\%%I.dll
- name: link libraries
run: |
for %%I in (libffi yaml) do mklink %%I.dll C:\vcpkg\installed\x64-windows\bin\%%I.dll
- name: Configure
run: >-
../src/win32/configure.bat --disable-install-doc
Expand Down

0 comments on commit 65ccae5

Please sign in to comment.