9e8f1bbeed
Dashboard / frontend (push) Failing after 0s
Dashboard / api (push) Failing after 0s
Lint PowerShell / powershell-lint (ubuntu-latest) (push) Failing after 1s
Python Lint / Lint Python with Ruff (push) Failing after 1s
ShellCheck / Lint shell scripts (push) Failing after 1s
Matrix Smoke / linux-smoke (push) Failing after 1s
Matrix Smoke / distro: cachyos (push) Failing after 15s
Matrix Smoke / distro: linux-mint-21.3 (push) Failing after 15s
Matrix Smoke / distro: debian-12 (push) Failing after 5m21s
Matrix Smoke / distro: fedora-41 (push) Failing after 4m56s
Matrix Smoke / distro: ubuntu-24.04 (push) Failing after 2m13s
Matrix Smoke / distro: rocky-9 (push) Failing after 10m39s
Matrix Smoke / distro: manjaro (push) Failing after 12m11s
Matrix Smoke / distro: opensuse-tw (push) Failing after 11m53s
Matrix Smoke / distro: archlinux (push) Failing after 20m3s
Matrix Smoke / distro: ubuntu-22.04 (push) Failing after 13m49s
Validate .env Schema / tier-1-env-validation (push) Successful in 52s
Validate .env Schema / tier-2-env-validation (push) Successful in 44s
Validate .env Schema / tier-3-env-validation (push) Successful in 52s
Validate .env Schema / tier-4-env-validation (push) Successful in 51s
Validate Extensions Catalog / Check catalog is up-to-date (push) Failing after 9m47s
Secret Scan / Scan for secrets (push) Failing after 21m4s
Validate Docker Compose / Validate Docker Compose files (push) Has been cancelled
Python Type Check / Type check with mypy (push) Has been cancelled
Validate .env Schema / tier-0-env-validation (push) Has been cancelled
Test Linux / integration-smoke (push) Has been cancelled
Lint PowerShell / powershell-lint (windows-latest) (push) Has been cancelled
Matrix Smoke / macos-smoke (push) Has been cancelled
51 lines
1.5 KiB
Bash
Executable File
51 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$ROOT_DIR"
|
|
|
|
PYTHON_CMD="python3"
|
|
if [[ -f "$ROOT_DIR/lib/python-cmd.sh" ]]; then
|
|
. "$ROOT_DIR/lib/python-cmd.sh"
|
|
PYTHON_CMD="$(ods_detect_python_cmd)"
|
|
elif command -v python >/dev/null 2>&1; then
|
|
PYTHON_CMD="python"
|
|
fi
|
|
|
|
echo "[gate] shell syntax"
|
|
mapfile -t sh_files < <(git ls-files '*.sh')
|
|
for f in "${sh_files[@]}"; do
|
|
bash -n "$f"
|
|
done
|
|
|
|
echo "[gate] compatibility + claims"
|
|
bash scripts/check-compatibility.sh
|
|
"$PYTHON_CMD" scripts/check-version-consistency.py
|
|
bash scripts/check-release-claims.sh
|
|
"$PYTHON_CMD" scripts/validate-golden-paths.py
|
|
"$PYTHON_CMD" scripts/validate-generated-configs.py
|
|
"$PYTHON_CMD" scripts/check-dependency-pins.py
|
|
|
|
echo "[gate] contracts"
|
|
bash tests/contracts/test-installer-contracts.sh
|
|
bash tests/contracts/test-preflight-fixtures.sh
|
|
bash tests/contracts/test-installer-hardening.sh
|
|
bash tests/test-uninstall-compose-flags.sh
|
|
bash tests/test-windows-missing-service-hints.sh
|
|
"$PYTHON_CMD" tests/contracts/test-network-exposure-contracts.py
|
|
|
|
echo "[gate] smoke"
|
|
bash tests/smoke/linux-amd.sh
|
|
bash tests/smoke/linux-nvidia.sh
|
|
bash tests/smoke/wsl-logic.sh
|
|
bash tests/smoke/macos-dispatch.sh
|
|
|
|
echo "[gate] installer simulation"
|
|
bash scripts/simulate-installers.sh
|
|
"$PYTHON_CMD" scripts/validate-sim-summary.py artifacts/installer-sim/summary.json
|
|
|
|
echo "[gate] update rollback"
|
|
bash tests/test-update-rollback-contract.sh
|
|
|
|
echo "[PASS] release gate"
|