Fixes
Some checks failed
Gitea Actions / Run-Tests-On-Amd64 (push) Has been cancelled
Gitea Actions / Run-Tests-On-Arm64 (push) Has been cancelled

This commit is contained in:
Thomas Peterson 2025-02-28 21:03:02 +01:00
parent 1073db05ee
commit f6101fafe2

View File

@ -15,7 +15,7 @@ jobs:
- run: echo "🖥️ The workflow is now ready to test your code on the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: Clean Up - name: Clean Up
run: | run: |
if [$(docker ps -q|wc -l) -gt 0]; then if [[$(docker ps -q|wc -l) -gt 0]]; then
docker ps -aq | xargs docker rm -f docker ps -aq | xargs docker rm -f
fi fi
docker system prune -af --volumes docker system prune -af --volumes
@ -55,7 +55,7 @@ jobs:
- run: echo "🖥️ The workflow is now ready to test your code on the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: Clean Up - name: Clean Up
run: | run: |
if [$(docker ps -q|wc -l) -gt 0]; then if [[$(docker ps -q|wc -l) -gt 0]]; then
docker ps -aq | xargs docker rm -f docker ps -aq | xargs docker rm -f
fi fi
docker system prune -af --volumes docker system prune -af --volumes