[CI/Build] Add CI end-to-end (E2E) tests (#139)

* [CI/Build] Add CI end-to-end (E2E) tests
Signed-off-by: Chenchao Hu <huchenchao@example.com>
This commit is contained in:
1916hcc
2026-01-28 19:30:55 +08:00
committed by GitHub
parent c37ee19e3d
commit 7c2966a98c
12 changed files with 573 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail
source ci/scripts/common/env.sh
source ci/scripts/common/log.sh
log "Stopping docker container: ${DOCKER_NAME}"
docker stop "${DOCKER_NAME}" >/dev/null 2>&1 || true
docker rm "${DOCKER_NAME}" >/dev/null 2>&1 || true
log "Cleanup done"