We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e1bbd7 commit 5a4ff88Copy full SHA for 5a4ff88
1 file changed
.github/workflows/cmake-multi-platform.yml
@@ -58,6 +58,15 @@ jobs:
58
sudo apt update
59
sudo apt install -y libboost-context-dev libboost-fiber-dev
60
61
+ # Cache vcpkg downloads for windows if fibers are on
62
+ - name: Cache vcpkg (Windows, Fibers ON)
63
+ # Only do it on windows and if fibers are enabled
64
+ if: runner.os == 'Windows' && matrix.fibers == 'ON'
65
+ uses: actions/cache@v4
66
+ with:
67
+ path: vcpkg
68
+ key: ${{ runner.os }}-vcpkg-${{ hashFiles('vcpkg.json') }}
69
+
70
# Setup vcpkg for windows
71
- name: Setup vcpkg (Windows)
72
# only required if fibers were enabled
0 commit comments