pre-cleanup for arm64 github actions

pull/11151/head
Ilya Zuyev 2021-04-19 15:18:24 -07:00
parent d4c1c2a79f
commit b6357a648f
2 changed files with 14 additions and 0 deletions

View File

@ -711,6 +711,13 @@ jobs:
with:
name: minikube_binaries
- name: Pre-cleanup
continue-on-error: true
run: |
minikube_binaries/minikube-linux-arm64 delete --all --purge || true
docker kill $(docker ps -aq) || true
docker system prune --volumes --force || true
- name: Run Integration Test
continue-on-error: false
# bash {0} to allow test to continue to next step. in case of

View File

@ -709,6 +709,13 @@ jobs:
with:
name: minikube_binaries
- name: Pre-cleanup
continue-on-error: true
run: |
minikube_binaries/minikube-linux-arm64 delete --all --purge || true
docker kill $(docker ps -aq) || true
docker system prune --volumes --force || true
- name: Run Integration Test
continue-on-error: false
# bash {0} to allow test to continue to next step. in case of