diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f9dbc38ecb183..ca9eaead3e06f8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,6 @@ jobs: include: - os: windows-2019 vcpkg_path: C:\mixxx-vcpkg - exe_suffix: .exe vcpkg_bootstrap: .\bootstrap-vcpkg.bat vcpkg_triplet: x64-windows vcpkg_host_triplet: x64-windows @@ -72,22 +71,6 @@ jobs: run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT working-directory: ${{ matrix.vcpkg_path }} - # Cache the vcpkg executable to avoid bootstrapping each time - - name: "Setup vcpkg executable cache" - id: cache-vcpkg-exe - uses: actions/cache@v3 - with: - path: ${{ matrix.vcpkg_path }}/vcpkg${{ matrix.exe_suffix }} - key: vcpkg-exe-${{ matrix.os }} - - # Avoid to download Powershell and CMake each time - - name: "Setup vcpkg tools cache" - id: cache-vcpkg-tools - uses: actions/cache@v3 - with: - path: ${{ matrix.vcpkg_path }}/downloads/tools - key: vcpkg-tools-${{ matrix.os }} - - name: Bootstrap vcpkg run: ${{ matrix.vcpkg_bootstrap }} working-directory: ${{ matrix.vcpkg_path }}