File tree Expand file tree Collapse file tree 1 file changed +22
-7
lines changed Expand file tree Collapse file tree 1 file changed +22
-7
lines changed Original file line number Diff line number Diff line change @@ -22,18 +22,26 @@ jobs:
22
22
run : |
23
23
Set-MpPreference -DisableRealtimeMonitoring $true
24
24
25
- - name : Restore Cache
25
+ - name : Restore BuildKit Cache
26
26
uses : actions/cache/restore@v4
27
- id : restore-cache
27
+ id : restore-buildkit- cache
28
28
with :
29
29
path : |
30
30
buildkit
31
- buildkitd
32
-
33
31
key : buildkit-${{ runner.os }}-
34
32
restore-keys : |
35
33
buildkit-${{ runner.os }}-
36
34
35
+ - name : Restore BuildKit daemon Cache
36
+ uses : actions/cache/restore@v4
37
+ id : restore-buildkitd-cache
38
+ with :
39
+ path : |
40
+ buildkitd
41
+ key : buildkitd-${{ runner.os }}-
42
+ restore-keys : |
43
+ buildkitd-${{ runner.os }}-
44
+
37
45
- name : Log in to Container Registry
38
46
uses : docker/login-action@v3
39
47
with :
@@ -165,11 +173,18 @@ jobs:
165
173
# --import-cache type=local,src=buildkit/.cache ^
166
174
# --opt target=nano
167
175
168
- - name : Save Cache
169
- id : cache- save
176
+ - name : Save BuildKit Cache
177
+ id : save-buildkit-cache
170
178
uses : actions/cache/save@v4
171
179
with :
172
180
path : |
173
181
buildkit
174
- buildkitd
175
182
key : buildkit-${{ runner.os }}-
183
+
184
+ - name : Save BuildKit daemon Cache
185
+ id : save-buildkitd-cache
186
+ uses : actions/cache/save@v4
187
+ with :
188
+ path : |
189
+ buildkitd
190
+ key : buildkitd-${{ runner.os }}-
You can’t perform that action at this time.
0 commit comments