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 20:58:50 +01:00
parent 5ce54f5074
commit 86033d6028

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