Build: Cache Qt during Actions run.

This commit is contained in:
Unknown W. Brackets 2021-02-13 10:07:06 -08:00
parent 29171d26cd
commit da62dde15c

View File

@ -178,9 +178,19 @@ jobs:
with:
submodules: recursive
- name: Cache Qt
uses: actions/cache@v1
if: matrix.extra == 'qt'
id: cache-qt
with:
path: ${{ runner.workspace }}/Qt
key: ${{ runner.os }}-QtCache
- name: Install Qt
uses: jurplel/install-qt-action@v2
if: matrix.extra == 'qt'
with:
cached: ${{ steps.cache-qt.outputs.cache-hit }}
- uses: nttld/setup-ndk@v1
if: matrix.extra == 'android'