This commit is contained in:
Jason Stedwell
2026-06-29 21:56:12 -05:00
parent bc207c1cf7
commit 1757777a32
32 changed files with 1468 additions and 44 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/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}"