Skip to content

Commit 9059383

Browse files
committed
WIP
1 parent 73c926e commit 9059383

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

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

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
docker:
9-
runs-on: macos-latest
9+
runs-on: macos-26
1010

1111
steps:
1212
- name: Checkout
@@ -24,9 +24,36 @@ jobs:
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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: e2e-tests-hybrid
22

3-
on:
4-
workflow_dispatch:
5-
pull_request:
3+
# on:
4+
# workflow_dispatch:
5+
# pull_request:
66

77
env:
88
TERM: xterm-256color

0 commit comments

Comments
 (0)