Skip to content

Commit

Permalink
Bump vcpkg version in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
natfrp-bot committed Aug 20, 2024
1 parent 6e173e5 commit c6764ca
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/natfrp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ env:
LLVM_VERSION: "15.0.6"
FLUTTER_VERSION: "3.19.6"
FLUTTER_RUST_BRIDGE_VERSION: "1.80.1"
# vcpkg version: 2024.03.25
VCPKG_COMMIT_ID: "a34c873a9717a888f58dc05268dea15592c2f0ff"
# vcpkg version: 2024.07.12
VCPKG_COMMIT_ID: "1de2026f28ead93ff1773e6e680387643e914ea1"

jobs:
build-RustDeskTempTopMostWindow:
Expand Down Expand Up @@ -89,10 +89,25 @@ jobs:
with:
vcpkgDirectory: C:\vcpkg
vcpkgGitCommitId: ${{ env.VCPKG_COMMIT_ID }}
doNotCache: false

- name: Install vcpkg dependencies
env:
VCPKG_DEFAULT_HOST_TRIPLET: x64-windows-static
run: |
$VCPKG_ROOT/vcpkg install --triplet x64-windows-static --x-install-root="$VCPKG_ROOT/installed"
if ! $VCPKG_ROOT/vcpkg \
install \
--triplet x64-windows-static \
--x-install-root="$VCPKG_ROOT/installed"; then
find "${VCPKG_ROOT}/" -name "*.log" | while read -r _1; do
echo "$_1:"
echo "======"
cat "$_1"
echo "======"
echo ""
done
exit 1
fi
shell: bash

- name: Build rustdesk
Expand Down

0 comments on commit c6764ca

Please sign in to comment.