Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #4483
Summary
This PR improves the robustness of release archive tests by moving all archive discovery and extraction logic into the Python release test script and enforcing loud failure modes.
Previously, archive unpacking and validation were split between the CI workflow and shell commands, which allowed broken or missing app archives to pass CI undetected. This change ensures that release tests fail deterministically if archives are missing, broken, or not tested.
What this PR changes
Why this is needed
This addresses a class of failures where broken app archives could pass CI without being properly tested, as reported in #4469. Centralizing archive handling in Python makes the release process easier to reason about, easier to test locally, and less error-prone across platforms.
How this was tested
actto verify artifact wiring and failure behavior.Tasks