Compare commits

...

2 commits

Author SHA1 Message Date
62e3f370b8 Remove hidden stuff too
Some checks failed
CI/CD Pipeline (Fully Isolated DinD) / Run Tests (DinD) (push) Failing after 19s
CI/CD Pipeline (Fully Isolated DinD) / Build and Push Docker Images (DinD) (push) Has been skipped
CI/CD Pipeline (Fully Isolated DinD) / Deploy to Production (push) Has been skipped
2025-07-05 13:05:43 -04:00
e24e3b722a clean workspace folder on the host and DinD at start of run 2025-07-05 13:04:02 -04:00

View file

@ -69,11 +69,13 @@ jobs:
# Use the pre-configured workspace directory (created in CI guide Step 7.3) # Use the pre-configured workspace directory (created in CI guide Step 7.3)
# Clone the repository to workspace # Clone the repository to workspace
rm -rf /tmp/ci-workspace /tmp/ci-workspace/.* 2>/dev/null || true
git clone "${{ gitea.server_url }}/${{ gitea.repository }}" /tmp/ci-workspace git clone "${{ gitea.server_url }}/${{ gitea.repository }}" /tmp/ci-workspace
cd /tmp/ci-workspace cd /tmp/ci-workspace
git checkout "${{ gitea.sha }}" git checkout "${{ gitea.sha }}"
# Copy workspace to DinD container # Copy workspace to DinD container
docker exec ci-dind rm -rf /workspace/* /workspace/.* 2>/dev/null || true
docker cp /tmp/ci-workspace/. ci-dind:/workspace/ docker cp /tmp/ci-workspace/. ci-dind:/workspace/
# Start testing environment using dedicated compose file inside DinD # Start testing environment using dedicated compose file inside DinD