Fixes
Some checks failed
Gitea Actions / Run-Tests-On-Arm64 (push) Failing after 1m51s
Gitea Actions / Run-Tests-On-Amd64 (push) Failing after 7m13s

This commit is contained in:
Thomas Peterson 2025-02-28 21:12:04 +01:00
parent f6101fafe2
commit c1b5426817

View File

@ -15,10 +15,11 @@ 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
- name: Init - name: Init
run: | run: |
make make-init ENVS="ENV=ci TAG=latest" make make-init ENVS="ENV=ci TAG=latest"
@ -55,10 +56,11 @@ 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
- name: Init - name: Init
run: | run: |
make make-init ENVS="ENV=ci TAG=latest" make make-init ENVS="ENV=ci TAG=latest"