From 489049bbaa77dbd5a175a6af235c758777aea19c Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 2 May 2026 23:31:49 +1000 Subject: [PATCH] ci: force vcpkg classic mode (manifest pulls heavy ffmpeg path not needed for Sciter UI) --- .gitea/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index cbb1b2092..f5d34b989 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -71,7 +71,11 @@ jobs: - name: Install vcpkg native deps shell: powershell 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) shell: powershell