We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91f84ce + da62dde commit f1a7a70Copy full SHA for f1a7a70
.github/workflows/build.yml
@@ -4,6 +4,8 @@ on:
4
push:
5
branches:
6
- master
7
+ # For testing.
8
+ - actions
9
paths-ignore:
10
- '*.{txt,md}'
11
- 'Tools/**'
@@ -176,9 +178,19 @@ jobs:
176
178
with:
177
179
submodules: recursive
180
181
+ - name: Cache Qt
182
+ uses: actions/cache@v1
183
+ if: matrix.extra == 'qt'
184
+ id: cache-qt
185
+ with:
186
+ path: ${{ runner.workspace }}/Qt
187
+ key: ${{ runner.os }}-QtCache
188
+
189
- name: Install Qt
190
uses: jurplel/install-qt-action@v2
191
if: matrix.extra == 'qt'
192
193
+ cached: ${{ steps.cache-qt.outputs.cache-hit }}
194
195
- uses: nttld/setup-ndk@v1
196
if: matrix.extra == 'android'
0 commit comments