12 lines
302 B
Bash
Executable File
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}"
|