We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a4ffb4 commit a20dec7Copy full SHA for a20dec7
1 file changed
.github/workflows/cli-tests.yml
@@ -92,3 +92,16 @@ jobs:
92
echo "ha.stderr.log not found at $LOG"
93
find $HOME/.colima -maxdepth 3 -type f -name '*stderr*' -print
94
fi
95
+ - name: Diagnostics (macOS arch & binaries)
96
+ if: ${{ failure() && matrix.os.name == 'mac' }}
97
+ run: |
98
+ echo "===GATHERING DIAGNOSTIC DATA ==="
99
+ set -euxo pipefail
100
+ uname -a
101
+ uname -m
102
+ which brew || true
103
+ brew --prefix || true
104
+ which colima || true
105
+ which limactl || true
106
+ if command -v colima >/dev/null; then file "$(which colima)"; fi
107
+ if command -v limactl >/dev/null; then file "$(which limactl)"; fi
0 commit comments