From 8fa8a71b133fe8740ab64b966edca3c249bc8403 Mon Sep 17 00:00:00 2001 From: sig Date: Mon, 25 May 2026 14:22:52 +0100 Subject: [PATCH] add stamp-expiry step to beekeeper CI workflow wires the new stamp-expiry check into the beekeeper integration test pipeline, running after the postage stamps check, with failure reporting in the artifact collection block --- .github/workflows/beekeeper.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/beekeeper.yml b/.github/workflows/beekeeper.yml index 0cb7c41fe2f..e999c287da2 100644 --- a/.github/workflows/beekeeper.yml +++ b/.github/workflows/beekeeper.yml @@ -169,6 +169,9 @@ jobs: - name: Test postage stamps id: postage-stamps run: timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks ci-postage + - name: Test stamp expiry + id: stamp-expiry + run: timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks ci-stamp-expiry - name: Test staking id: stake run: timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks ci-stake @@ -204,6 +207,7 @@ jobs: if ${{ steps.manifest.outcome=='failure' }}; then FAILED=manifest; fi if ${{ steps.manifest-v1.outcome=='failure' }}; then FAILED=manifest-v1; fi if ${{ steps.postage-stamps.outcome=='failure' }}; then FAILED=postage-stamps; fi + if ${{ steps.stamp-expiry.outcome=='failure' }}; then FAILED=stamp-expiry; fi if ${{ steps.stake.outcome=='failure' }}; then FAILED=stake; fi if ${{ steps.withdraw.outcome=='failure' }}; then FAILED=withdraw; fi if ${{ steps.redundancy.outcome=='failure' }}; then FAILED=redundancy; fi