fix(ci): pre-cache genvm v0.2.16 to bypass upstream asset rename — GHB-202#111
Merged
Gastonfoncea merged 1 commit intoMay 21, 2026
Conversation
…B-202 GenLayer Labs published genvm v0.3.0-rc0 on 2026-05-20 and dropped the `genvm-universal.tar.xz` asset in favor of per-platform builds. Since `genlayer-test` resolves the genvm version at runtime via a HEAD to `releases/latest`, every CI run since has hit 404 trying to download the old asset path from the new release. Pre-seeding `~/.cache/gltest-direct/` with v0.2.16 makes `list_cached_versions()` return it before the "latest" lookup, so the test runner uses the last known-good genvm. Remove this step once upstream restores a universal tarball or `gltest` gains support for platform-specific assets. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
genlayer-testresolves the genvm version at runtime viareleases/latest, and GenLayer Labs markedv0.3.0-rc0(which removedgenvm-universal.tar.xz) as latest.~/.cache/gltest-direct/with the v0.2.16 tarball sogltest's loader picks it up before consulting GitHub..github/workflows/ci.yml, no Python code changes.Why this approach (and not the others)
genlayer-testPyPI package doesn't help — the genvm version is resolved by an HTTP HEAD at runtime, not from package metadata.genvm-linux-amd64.tar.xz) would require patchinggltestupstream; not in scope for a hotfix.Test plan
JS/TSandPython (GenLayer contracts)should be green.Follow-up
genvm-universal.tar.xzfor newer releases, or oncegltestlearns to download platform-specific assets.🤖 Generated with Claude Code