Files
forgerunner/scripts/verify-runtime.sh
T

12 lines
302 B
Bash
Raw Normal View History

2026-06-29 21:56:12 -05:00
#!/usr/bin/env bash
# verify-runtime.sh — validate the runner image tool chain without starting the daemon
set -euo pipefail
IMAGE="${1:-custom-gitea-runner:latest}"
echo "Running smoke test against image: ${IMAGE}"
docker run --rm \
--entrypoint /usr/local/bin/smoke-test.sh \
"${IMAGE}"