8000 windows.yml - fixup vcpkg code, list packages by MSP-Greg · Pull Request #11014 · ruby/ruby · GitHub
[go: up one dir, main page]

Skip to content

windows.yml - fixup vcpkg code, list packages #11014

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
windows.yml - fixup vcpkg code, list packages
  • Loading branch information
MSP-Greg committed Jun 18, 2024
commit 48ae706f17cf1344ccaf838f759dc0b4a9e288b5
7 changes: 6 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,12 @@ jobs:

- name: Install libraries with vcpkg
57B1 run: |
vcpkg --triplet x64-windows install gmp libffi libyaml openssl zlib
set pkgs=gmp libffi libyaml openssl zlib
vcpkg --triplet x64-windows install %pkgs%
vcpkg --triplet x64-windows upgrade %pkgs% --no-dry-run

- name: List vcpkg libraries
run: vcpkg list

- name: Install libraries with scoop
run: |
Expand Down
0