Files
Jason Stedwell 1757777a32 ver 0.1
2026-06-29 21:57:51 -05:00

12 lines
302 B
Bash
Executable File

#!/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}"