Add GitHub Action to build and publish transport interop implementation images to GHCR#836
Merged
Conversation
Adds a reusable workflow (workflow_dispatch + workflow_call) that: - Discovers version subdirs under impl/<family>/ - Computes cache keys matching helpers/cache.ts logic - Skips builds when the image already exists in GHCR - Builds via Make and pushes all *image.json variants to GHCR Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add go.yml workflow that triggers on changes to transport-interop/impl/go/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
d3e2ddf to
a26ce42
Compare
aa4c1b6 to
ab5febc
Compare
a522ee1 to
b6c0209
Compare
* Support GHCR container images with cache-key derived tags When containerImageID starts with "ghcr.io/", the tag is computed dynamically from the cache key (same hashing logic as helpers/cache.ts and .github/scripts/compute-cache-key.mjs). This allows the test runner to pull pre-built images published by the build-and-publish workflow. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Add ghcr containerImageID references * Remove cache helper calls * Use GH runners instead of self hosted * Shard the transport interop tests * Remove S3 caching code --------- Co-authored-by: Marco Munizaga <marco+bot@marcopolo.io> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
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.
Adds a reusable workflow (workflow_dispatch + workflow_call) that: