Skip to content

Commit 0358f96

Browse files
committed
WIP
1 parent 31d08c7 commit 0358f96

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

.github/workflows/e2e-tests-arm.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,39 @@ jobs:
3939
- name: Test Docker
4040
run: |
4141
echo "=== Colima Status ==="
42-
colima status
42+
colima status || echo "Colima not running"
4343
4444
echo "=== Colima Configuration ==="
45-
colima list
45+
colima list || echo "No Colima instances"
4646
4747
echo "=== Colima Logs (startup) ==="
4848
if [ -f "/Users/runner/.colima/_lima/colima/ha.stderr.log" ]; then
4949
echo "Host agent stderr:"
5050
tail -20 "/Users/runner/.colima/_lima/colima/ha.stderr.log"
51+
else
52+
echo "No stderr log found"
5153
fi
5254
5355
if [ -f "/Users/runner/.colima/_lima/colima/ha.stdout.log" ]; then
5456
echo "Host agent stdout:"
5557
tail -20 "/Users/runner/.colima/_lima/colima/ha.stdout.log"
58+
else
59+
echo "No stdout log found"
5660
fi
5761
62+
echo "=== System Virtualization Support ==="
63+
sysctl kern.hv_support || echo "No HV support"
64+
sysctl kern.vm_guest || echo "No VM guest info"
65+
66+
echo "=== Brew Services Status ==="
67+
brew services list | grep colima || echo "No colima service found"
68+
69+
echo "=== Trying to start Colima manually with VZ ==="
70+
colima start --vm-type=vz --memory 2 --cpu 1 || echo "VZ manual start failed"
71+
72+
echo "=== Final Colima Status ==="
73+
colima status || echo "Colima still not running"
74+
5875
echo "=== Waiting for Docker to be ready ==="
5976
# Wait for Docker daemon to be ready
6077
for i in {1..30}; do

0 commit comments

Comments
 (0)