disable caching

This commit is contained in:
Rick Vogel 2023-04-03 16:01:35 +02:00
parent 19cd6a4440
commit bcfb810a24
1 changed files with 15 additions and 15 deletions

View File

@ -299,21 +299,21 @@ jobs:
run: | run: |
sudo apt-get install -y imagemagick sudo apt-get install -y imagemagick
- name: Cache Qt5 #- name: Cache Qt5
if: endsWith(matrix.config.name, 'Qt5') # if: endsWith(matrix.config.name, 'Qt5')
id: cache-qt-5-15 # id: cache-qt-5-15
uses: actions/cache@v1 # not v2! # uses: actions/cache@v1 # not v2!
with: # with:
path: ../Qt/5.15.2 # path: ../Qt/5.15.2
key: ${{ runner.os }}-QtCache-Qt5 # key: ${{ runner.os }}-QtCache-Qt5
#
- name: Cache Qt6 #- name: Cache Qt6
if: endsWith(matrix.config.name, 'Qt6') # if: endsWith(matrix.config.name, 'Qt6')
id: cache-qt-6-2 # id: cache-qt-6-2
uses: actions/cache@v1 # not v2! # uses: actions/cache@v1 # not v2!
with: # with:
path: ../Qt/6.2.4 # path: ../Qt/6.2.4
key: ${{ runner.os }}-QtCache-Qt6 # key: ${{ runner.os }}-QtCache-Qt6
- name: Install Qt5 - name: Install Qt5
if: endsWith(matrix.config.name, 'Qt5') if: endsWith(matrix.config.name, 'Qt5')