Skip to content

Commit 8eef512

Browse files
fix(ci): extend deploy image readiness poll 10min→90min (DAK-6833) (#202)
ARM Docker builds measured at 30-106 minutes. PR#200 added the retry loop but with only 10×60s=10min window — far too short to cover even the average 49-64min ARM build time. Extend to 90×60s=90min to cover worst-case ARM CI builds. Co-authored-by: Paperclip <noreply@paperclip.ing>
1 parent 031107f commit 8eef512

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/deploy-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Verify Docker image exists
3434
run: |
3535
echo "Checking ghcr.io/dakera-ai/dakera:${{ inputs.version }}..."
36-
for i in $(seq 1 10); do
36+
for i in $(seq 1 90); do
3737
if docker manifest inspect ghcr.io/dakera-ai/dakera:${{ inputs.version }} > /dev/null 2>&1; then
3838
echo "✅ Image exists (attempt $i/10)"
3939
exit 0

0 commit comments

Comments
 (0)