fix(ci): harden soroban deploy workflow against transient failures#922
Open
MarvyNwaokobia wants to merge 2 commits into
Open
fix(ci): harden soroban deploy workflow against transient failures#922MarvyNwaokobia wants to merge 2 commits into
MarvyNwaokobia wants to merge 2 commits into
Conversation
…rSafeD#548) - Add scripts/verify-csp-compliance.js: byte-level audit of generated JS glue code to detect eval() and new Function() CSP violations - Require wasm-bindgen >=0.2.84 for CSP-friendly code generation - Add mandatory 'Verify CSP Compliance' step in CI after WASM build - Add frontend/tests/e2e/csp-security.spec.ts: Playwright E2E test that loads WASM module under a strict CSP (no unsafe-eval) header - Create docs/wasm-security-hardening.md with deployment guidance - Update DOCUMENTATION_INDEX.md with links to new security docs Closes HyperSafeD#548
The scheduled cron was failing every 6 hours due to: - Soroban CLI install failing on transient SSL errors (|| true swallowed the failure but soroban --version still exited 127) - Schedule trigger attempting deployment without secrets - Missing artifact uploads crashing downstream jobs Add install retry loop, skip deploy on schedule runs, and handle missing artifacts gracefully. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
@MarvyNwaokobia is attempting to deploy a commit to the gbangbolaoluwagbemiga's projects Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
|| truewhich silently swallowed failures whilesoroban --versionstill exited 127 on transient SSL errorsif-no-files-found: ignoreon uploads,continue-on-erroron downloads, gate validation steps on download successContext
The scheduled workflow has been failing on every 6-hour cron run (3+ failures on 2026-06-20 alone). The most recent failure was a transient SSL error downloading the
csvcrate duringcargo install soroban-cli, which cascaded into a full job failure.Test plan
workflow_dispatchdry-run still works🤖 Generated with Claude Code