File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 65
65
sleep 10
66
66
docker logs docker_registry_proxy > initial_logs.txt
67
67
68
- - uses : actions/upload-artifact@v2
68
+ - name : Upload artifact initial_logs
69
+ uses : actions/upload-artifact@v2
69
70
with :
70
71
name : initial_logs
71
72
path : initial_logs.txt
@@ -132,7 +133,7 @@ jobs:
132
133
echo "Container is up again..."
133
134
134
135
# This can be quite slow, since Github Actions runner Docker comes preloaded with a lot of images.
135
- - name : Initial prune of all unused images from docker cache
136
+ - name : Initial prune of all unused images from docker cache (slow)
136
137
timeout-minutes : 2
137
138
run : |
138
139
docker image prune --all --force
@@ -147,7 +148,8 @@ jobs:
147
148
run : |
148
149
docker logs docker_registry_proxy > cold_cache.txt
149
150
150
- - uses : actions/upload-artifact@v2
151
+ - name : Upload artifact cold_cache
152
+ uses : actions/upload-artifact@v2
151
153
with :
152
154
name : cold_cache
153
155
path : cold_cache.txt
@@ -167,12 +169,9 @@ jobs:
167
169
run : |
168
170
docker logs docker_registry_proxy > warm_cache.txt
169
171
170
- - uses : actions/upload-artifact@v2
172
+ - name : Upload artifact warm_cache
173
+ uses : actions/upload-artifact@v2
171
174
with :
172
175
name : warm_cache
173
176
path : warm_cache.txt
174
177
175
- - name : Finally stop proxy instance in docker
176
- timeout-minutes : 1
177
- run : |
178
- timeout 58 docker stop docker_registry_proxy
You can’t perform that action at this time.
0 commit comments