ci: force vcpkg classic mode (manifest pulls heavy ffmpeg path not needed for Sciter UI)
Build patched rustdesk.exe / Build Win x64 (Sciter UI) (push) Failing after 26s

This commit is contained in:
2026-05-02 23:31:49 +10:00
parent f479c64c3d
commit 489049bbaa
+5 -1
View File
@@ -71,7 +71,11 @@ jobs:
- name: Install vcpkg native deps - name: Install vcpkg native deps
shell: powershell shell: powershell
run: | run: |
C:\vcpkg\vcpkg.exe install --triplet x64-windows-static libvpx libyuv opus aom libjpeg-turbo # --feature-flags=-manifests forces classic mode -- the repo
# has a vcpkg.json that pulls in ffmpeg+amf+nvcodec+qsv (hwcodec
# path) which is a 2hr build and not needed for Sciter UI.
# Sciter only needs the codec/image libs below.
C:\vcpkg\vcpkg.exe install --feature-flags=-manifests --triplet x64-windows-static libvpx libyuv opus aom libjpeg-turbo
- name: cargo build --release (Sciter UI) - name: cargo build --release (Sciter UI)
shell: powershell shell: powershell