Record haskelseed runner smoke state
This commit is contained in:
parent
88f0b3a0df
commit
de6178764c
4 changed files with 48 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue