Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build-test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,12 @@ jobs:
uses: actions/cache@v5
id: vcpkg-cache
with:
key: vcpkg-cache-${{ matrix.vcpkg-version }}
# Repro PR: cache key with a unique suffix so the existing cached
# vcpkg tree is NOT used. This forces a fresh `vcpkg install` of
# all ports in requirements/windows.txt, which surfaces the
# msys2 mingw-w64-x86_64-pkgconf 1~2.2.0-1 download 404 inside
# upstream blosc's `vcpkg_fixup_pkgconfig()` call. Do NOT merge.
key: vcpkg-cache-${{ matrix.vcpkg-version }}-repro-blosc-msys2-2026-04-20
path: |
C:\vcpkg\*

Expand Down
Loading