Record haskelseed runner smoke state
Some checks failed
Forge Runner Smoke / compatibility-smoke (push) Has been cancelled

This commit is contained in:
2026-06-08 00:51:50 +02:00
parent 88f0b3a0df
commit de6178764c
4 changed files with 48 additions and 2 deletions

View File

@@ -82,6 +82,18 @@ if have ssh; then
grep -nE "\"(uuid|name|address|labels|ephemeral)\"" /root/.runner || true
sed -n "8,20p" /root/.runner 2>/dev/null || true
fi
if command -v bash >/dev/null 2>&1; then
echo "login_shell_tools:"
bash -lc '"'"'
for tool in skopeo helm kubectl nix git curl; do
if command -v "$tool" >/dev/null 2>&1; then
printf "ok: %s -> %s\n" "$tool" "$(command -v "$tool")"
else
printf "missing: %s\n" "$tool"
fi
done
'"'"'
fi
' 2>&1 || echo "runner host probe failed for ${RUNNER_HOST}"
else
echo "ssh missing; skipping runner host probe"