ci: Chocolatey dependencies caching added

Resolves #256
This commit is contained in:
Mateusz Pusz
2021-03-17 17:43:14 +01:00
parent 44025cd9a0
commit 21d20ed56d

View File

@@ -78,6 +78,14 @@ jobs:
downcast_mode: [ "on", "auto" ] downcast_mode: [ "on", "auto" ]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Cache Chocolatey Dependencies
if: runner.os == 'Windows'
uses: actions/cache@v2
with:
path: C:\ProgramData\chocolatey\lib
key: choco-cache-${{ hashFiles('**/dependencies.config') }}
restore-keys: |
choco-cache-
- name: Install Clang - name: Install Clang
if: matrix.config.compiler.type == 'CLANG' if: matrix.config.compiler.type == 'CLANG'
shell: bash shell: bash