Skip to content

Commit

Permalink
Video-2820 add vcpkg.json and update cmdline for vcpkg install...
Browse files Browse the repository at this point in the history
  • Loading branch information
saraboule committed Apr 3, 2024
1 parent 165871d commit 595e48c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Install AWS C++ SDK
run: |
vcpkg install aws-sdk-cpp[s3,sts] -v 1.11.225 --binarysource="clear;x-gha,readwrite" --triplet x64-windows
vcpkg install --binarysource="clear;x-gha,readwrite" --triplet x64-windows
echo "CMAKE_PREFIX_PATH=$Env:VCPKG_INSTALLATION_ROOT\installed\x64-windows" | Out-File -FilePath $Env:GITHUB_ENV -Append -Encoding utf8
- name: Build Amazon-S3 Plugin
Expand Down
34 changes: 34 additions & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"vcpkg-configuration": {
"default-registry": {
"kind": "git",
"baseline": "83972272512ce4ede5fc3b2ba98f6468b179f192",
"repository": "https://github.com/microsoft/vcpkg"
},
"registries": [
{
"kind": "artifact",
"location": "https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip",
"name": "microsoft"
}
]
},
"dependencies": [
{
"name": "aws-sdk-cpp",
"default-features": false,
"features": [
"s3",
"sts"
],
"version>=": "1.11"
},
],
"overrides": [
{
"name": "aws-sdk-cpp",
"version": "1.11.225"
}
]
}

0 comments on commit 595e48c

Please sign in to comment.