runbox 1.5.1

CLI for scaffolding container runner integration files
Documentation
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
# l1 — bare test execution (VERB_LAYER=l1); runs w3 directly inside container.
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR/../.."
if [[ "${1:-}" == "--dry-run" ]]; then echo "w3 .test level::3"; exit 0; fi
export CARGO_NET_OFFLINE=true
export NO_COLOR=1
exec w3 .test level::3