Restore the lang-SDK Go bundle build - #70561
Merged
Merged
Conversation
The Go example bundle built by the lang-SDK Kubernetes test resolves the Go SDK from the in-repo sources, so it carries its own copy of the SDK's indirect requirements. Bumping a dependency inside go-sdk alone leaves the two inconsistent, and Go then refuses to build the bundle at all, failing the job on every pull request rather than only on the one that bumped it.
1 task
jason810496
reviewed
Jul 28, 2026
jason810496
left a comment
Member
There was a problem hiding this comment.
Thank Jarek!
main is currently red on Kubernetes tests / K8S Lang-SDK for every PR, at the "Build Go bundle" step:
And sorry that I didn't notice the main is failing.
shahar1
pushed a commit
to shahar1/airflow
that referenced
this pull request
Jul 30, 2026
The Go example bundle built by the lang-SDK Kubernetes test resolves the Go SDK from the in-repo sources, so it carries its own copy of the SDK's indirect requirements. Bumping a dependency inside go-sdk alone leaves the two inconsistent, and Go then refuses to build the bundle at all, failing the job on every pull request rather than only on the one that bumped 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.
mainis currently red onKubernetes tests / K8S Lang-SDKfor every PR, at the "Build Go bundle" step:kubernetes-tests/lang_sdk/go_example/is a separate module that resolves the Go SDK from the in-repo sources:so it carries its own copy of the SDK's indirect requirements. #70226 bumped
google.golang.org/grpc1.79.3 → 1.82.1 inside/go-sdkonly, leaving the example module pinned to the old versions. Go refuses to build an inconsistent module, so the job fails on every pull request rather than only on the one that did the bump.This is
go mod tidyin that module — the three indirect requirements realign with the SDK, plusgo.sum:Verified by running exactly what CI runs, in the example module:
Worth a follow-up: nothing tidies the dependent module when Dependabot bumps a dependency in
/go-sdk, so the next Go bump breaks this again the same way. Ago mod tidy -diffcheck over the example module would catch it on the bump PR itself.Was generative AI tooling used to co-author this PR?
Generated-by: Claude Code (Opus 5) following the guidelines