feat: Add comprehensive unit and integration testing infrastructure #38

Merged
jimmy merged 6 commits from feature/add-testing-infrastructure into main 2026-03-30 11:19:19 +08:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 99b626eadc - Show all commits
+1 -1
View File
@@ -44,7 +44,7 @@ jobs:
image_ref="$1"
mirror_ref="${mirror_host}/library/${image_ref}"
echo "Attempting mirror pre-pull: ${mirror_ref}"
if docker pull "${mirror_ref}"; then
if timeout 60 docker pull "${mirror_ref}"; then
docker tag "${mirror_ref}" "${image_ref}"
echo "Mirror pre-pull succeeded for ${image_ref}"
else
+1 -1
View File
@@ -44,7 +44,7 @@ jobs:
image_ref="$1"
mirror_ref="${mirror_host}/library/${image_ref}"
echo "Attempting mirror pre-pull: ${mirror_ref}"
if docker pull "${mirror_ref}"; then
if timeout 60 docker pull "${mirror_ref}"; then
docker tag "${mirror_ref}" "${image_ref}"
echo "Mirror pre-pull succeeded for ${image_ref}"
else