ci: Chocolatey caching removed

Relates to #256
This commit is contained in:
Mateusz Pusz
2021-03-17 22:38:24 +01:00
parent 27c9ca5ffd
commit d6f9ae0308

View File

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