From 5a2c50275dcbc0d70fdf5991a84ae09b2cdfd01a Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 29 Apr 2026 15:10:24 +0100 Subject: [PATCH] ci: cap docker e2e package validation --- .github/workflows/openclaw-live-and-e2e-checks-reusable.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/openclaw-live-and-e2e-checks-reusable.yml b/.github/workflows/openclaw-live-and-e2e-checks-reusable.yml index 2442b743e79..f0eb8b97229 100644 --- a/.github/workflows/openclaw-live-and-e2e-checks-reusable.yml +++ b/.github/workflows/openclaw-live-and-e2e-checks-reusable.yml @@ -1150,7 +1150,11 @@ jobs: fi cp "${tgzs[0]}" "$target" fi - node scripts/check-openclaw-package-tarball.mjs "$target" + echo "Validating Docker E2E package tarball: $target" + started_at="$(date +%s)" + timeout --foreground 5m node scripts/check-openclaw-package-tarball.mjs "$target" + finished_at="$(date +%s)" + echo "Docker E2E package tarball validation finished in $((finished_at - started_at))s." digest="$(sha256sum "$target" | awk '{print $1}')" tag="pkg-${digest:0:32}" echo "sha256=$digest" >> "$GITHUB_OUTPUT"