fix(ci): remove docker images in linux-arm64

This adds a step to remove the docker images and hopefully free up space in the
linux-arm64 part of ci.
This commit is contained in:
Joe Previte 2021-03-01 15:50:07 -07:00
parent 471c6ffd39
commit 5e08d7f853
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
1 changed files with 5 additions and 2 deletions

View File

@ -49,8 +49,7 @@ jobs:
name: test-videos
path: ./test/videos
- name: Remove release packages and test artifacts
run: |
rm -rf ./release-packages ./test/videos
run: rm -rf ./release-packages ./test/videos
release:
runs-on: ubuntu-latest
@ -105,6 +104,10 @@ jobs:
with:
name: release-packages
path: ./release-packages
- name: Remove docker images
run: |
docker rm $(docker ps -aq)
docker rmi $(docker images -q)
macos-amd64:
needs: release