ci: retry Kurtosis CLI installation - #23288
Draft
yperbasis wants to merge 1 commit into
Draft
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Retries Kurtosis CLI installation to prevent transient APT repository failures from blocking CI.
Changes:
- Retries update and pinned installation three times.
- Adds 10- and 20-second backoff delays.
- Applies identical behavior to Assertoor and GLOAS workflows.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/test-kurtosis-assertoor.yml |
Adds bounded CLI installation retries. |
.github/workflows/test-kurtosis-gloas.yml |
Adds matching CLI installation retries. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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.
Problem
The merge-group run for #23271 failed before any Kurtosis test ran. The
assertoor_glamsterdam_serial_testrunner timed out while refreshingapt.fury.io;apt-get updatecontinued with a warning, thenapt-get installfailed becausekurtosis-cliwas unavailable.The workflow already retried engine startup, but CLI installation had only one attempt. A transient package-repository failure therefore failed
ci-gateand removed the PR from the merge queue.Root-cause job: https://github.com/erigontech/erigon/actions/runs/31792302050/job/94743279070
Fix
apt-get updateand pinnedkurtosis-cliinstallation pair up to three times.The update and install commands are retried together because APT may return success from the update while reporting an unavailable repository as a warning; the following install is the command that exposes the failure.
Validation
actionlint .github/workflows/test-kurtosis-assertoor.yml .github/workflows/test-kurtosis-gloas.ymlmake lintrepeatedly, all cleanmake erigon integrationNo TDD cycle: this is a mechanical CI workflow change with no application behavior change.