Cache vcpkg_installed also

This commit is contained in:
Patricia Aas 2021-09-10 14:39:33 +02:00
parent 8b6a0a5c86
commit 912624ccf9
1 changed files with 6 additions and 2 deletions

View File

@ -34,14 +34,18 @@ jobs:
- uses: actions/checkout@v2
- name: Create vcpkg build folder
run: mkdir -p ${{runner.workspace}}/build/_deps
run: |
mkdir -p ${{runner.workspace}}/build/vcpkg_installed
mkdir -p ${{runner.workspace}}/build/_deps
- name: Cache vcpkg
uses: actions/cache@v2
env:
cache-name: vcpkg-modules
with:
path: ${{runner.workspace}}/build/_deps
path: |
${{runner.workspace}}/build/vcpkg_installed
${{runner.workspace}}/build/_deps
key: ${{ runner.os }}-${{ matrix.cmake-build-type }}-${{ hashFiles('vcpkg.json') }}
- name: Fix Path on Ubuntu