File tree Expand file tree Collapse file tree 2 files changed +32
-5
lines changed
Expand file tree Collapse file tree 2 files changed +32
-5
lines changed Original file line number Diff line number Diff line change 66
77jobs :
88 docker :
9- runs-on : macos-latest
9+ runs-on : macos-26
1010
1111 steps :
1212 - name : Checkout
2424 - name : Install Docker (via Colima)
2525 run : |
2626 brew install colima docker
27- colima start --arch aarch64 --vm-type=vz --memory 4
27+
28+ # Check available VM types
29+ echo "Available VM types:"
30+ colima start --help | grep -A 10 "vm-type" || echo "Help not available"
31+
32+ # Try different VM types that work on macOS runners
33+ echo "Trying QEMU VM type (more compatible with runners)..."
34+ if ! colima start --arch aarch64 --vm-type=qemu --memory 4 --cpu 2; then
35+ echo "QEMU failed, trying with different parameters..."
36+ colima start --arch aarch64 --vm-type=qemu --memory 2 --cpu 1
37+ fi
2838
2939 - name : Test Docker
3040 run : |
41+ echo "=== Docker Status ==="
3142 docker version
43+
44+ echo "=== Colima Status ==="
45+ colima status
46+
47+ echo "=== Testing Docker ==="
3248 docker run --rm arm64v8/alpine uname -m
49+
50+ echo "=== Colima Logs ==="
51+ if [ -f "/Users/runner/.colima/_lima/colima/ha.stderr.log" ]; then
52+ echo "Host agent stderr:"
53+ tail -20 "/Users/runner/.colima/_lima/colima/ha.stderr.log"
54+ fi
55+
56+ if [ -f "/Users/runner/.colima/_lima/colima/ha.stdout.log" ]; then
57+ echo "Host agent stdout:"
58+ tail -20 "/Users/runner/.colima/_lima/colima/ha.stdout.log"
59+ fi
Original file line number Diff line number Diff line change 11name : e2e-tests-hybrid
22
3- on :
4- workflow_dispatch :
5- pull_request :
3+ # on:
4+ # workflow_dispatch:
5+ # pull_request:
66
77env :
88 TERM : xterm-256color
You can’t perform that action at this time.
0 commit comments