From c0ffdbcfdcde171153b0d40b8e067b734e4ec151 Mon Sep 17 00:00:00 2001 From: ericek111 Date: Tue, 31 Mar 2026 12:05:00 +0200 Subject: [PATCH] CI/CD: cache Windows dependencies --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dd850c7..1ccb684 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,6 +44,13 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Cache vcpkg packages + uses: actions/cache@v4 + with: + path: ${{ env.VCPKG_INSTALLATION_ROOT }}/installed + key: vcpkg-x64-windows-${{ hashFiles('.github/workflows/build.yml') }} + restore-keys: vcpkg-x64-windows- + - name: Install vcpkg dependencies run: | vcpkg install sdl2 fftw3 "libsndfile[core]" --triplet x64-windows