Skip to content
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

Use QuantStack vcpkg registry for liblzma/xz #3262

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/static_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ jobs:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: Cache vcpkg packages
uses: actions/cache@v3
with:
#- name: Cache vcpkg packages
#uses: actions/cache@v3
#with:
# The installed packages are in %VCPKG_INSTALLATION_ROOT%\installed\x64-windows-static
# and the info which packages are installed is in %VCPKG_INSTALLATION_ROOT%\installed\vcpkg
path: C:\Users\runneradmin\AppData\Local\vcpkg
key: vcpkg-win-64-appdata
#path: C:\Users\runneradmin\AppData\Local\vcpkg
#key: vcpkg-win-64-appdata
- name: Install dependencies with vcpkg
shell: cmd
# remove libsolv overlay-ports once https://github.com/microsoft/vcpkg/pull/31275 is released
Expand Down
17 changes: 17 additions & 0 deletions vcpkg-configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"default-registry": {
"baseline": "c5da4bafbd4f47428dea8bdfec96312950dbbf83",
"kind": "git",
"repository": "https://github.com/microsoft/vcpkg"
},
"registries": [
{
"baseline": "ddbcd3c4e49a04ac10b402c732b6f4ccf4432e65",
"kind": "git",
"packages": [
"libarchive", "liblzma"
],
"repository": "https://github.com/QuantStack/vcpkg"
}
]
}
1 change: 1 addition & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"dependencies": [
"liblzma",
"zstd",
"curl",
{
Expand Down
Loading