We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 418e46d commit 67e3d59Copy full SHA for 67e3d59
1 file changed
.github/workflows/cli-tests.yml
@@ -73,3 +73,22 @@ jobs:
73
74
- name: Repo setup-remotes tests
75
run: ./tests/test_repo.sh
76
+
77
+ - name: Dump Colima hostagent logs on failure
78
+ if: ${{ failure()}}
79
+ run: |
80
+ echo "=== DUMPING DOCKER & COMPOSE INFO ==="
81
+ docker version || true
82
+ docker info || true
83
+ docker ps -a || true
84
+ docker images || true
85
+ echo "=== DUMPING COLIMA LOGS ==="
86
+ LOG="$HOME/.colima/_lima/colima/ha.stderr.log"
87
+ if [ -f "$LOG" ]; then
88
+ echo "==== ha.stderr.log ===="
89
+ sed -n '1,400p' "$LOG"
90
+ echo "======================="
91
+ else
92
+ echo "ha.stderr.log not found at $LOG"
93
+ find $HOME/.colima -maxdepth 3 -type f -name '*stderr*' -print
94
+ fi
0 commit comments