From 5f6f1e8d368113277c04333966952300b6ce3f96 Mon Sep 17 00:00:00 2001 From: rustdesk Date: Thu, 20 Jun 2024 22:45:07 +0800 Subject: [PATCH] use prebuilt vcpkg to overwrite --- .github/workflows/playground.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/playground.yml b/.github/workflows/playground.yml index ed2af510c..403b31999 100644 --- a/.github/workflows/playground.yml +++ b/.github/workflows/playground.yml @@ -128,7 +128,6 @@ jobs: vcpkgGitCommitId: ${{ env.VCPKG_COMMIT_ID }} - name: Install vcpkg dependencies - if: False run: | case ${{ matrix.job.target }} in aarch64-linux-android) @@ -145,12 +144,12 @@ jobs: run: | pushd /opt git clone https://github.com/rustdesk-org/rustdesk_thirdparty_lib.git --depth=1 + cp -rf /opt/rustdesk_thirdparty_lib/vcpkg/* /opt/artifacts/vcpkg/ - name: Build rustdesk lib env: ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }} ANDROID_NDK_ROOT: ${{ steps.setup-ndk.outputs.ndk-path }} - VCPKG_ROOT: /opt/rustdesk_thirdparty_lib/vcpkg run: | rustup target add ${{ matrix.job.target }} cargo install cargo-ndk --version ${{ env.CARGO_NDK_VERSION }}