We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9059383 commit 0830d26Copy full SHA for 0830d26
.github/workflows/e2e-tests-arm.yml
@@ -29,11 +29,11 @@ jobs:
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
+ echo "Trying VZ VM type..."
+ if ! colima start --arch aarch64 --vm-type=vz --memory 4 --cpu 2; then
+ echo "Direct start failed, trying brew services approach..."
+ brew services start colima
+ sleep 10
37
fi
38
39
- name: Test Docker
0 commit comments