feat(go): support go 1.26 and delve 1.26.1#149
Open
patrickpichler wants to merge 1 commit intoGoogleContainerTools:duct-tapefrom
Open
feat(go): support go 1.26 and delve 1.26.1#149patrickpichler wants to merge 1 commit intoGoogleContainerTools:duct-tapefrom
patrickpichler wants to merge 1 commit intoGoogleContainerTools:duct-tapefrom
Conversation
There was a problem hiding this comment.
Code Review
This pull request attempts to upgrade the Go version to 1.26 and Delve to 1.26.1 across the helper image, Skaffold configuration, and integration tests. However, multiple critical issues were identified because Go 1.26 and Delve 1.26.1 are not currently existing or valid versions. These changes will cause the Docker build to fail as the base images and source archives cannot be retrieved. The feedback recommends using a valid Go version, such as 1.25 or a patch update for 1.24, and updating all associated test manifests and labels accordingly.
| @@ -1,10 +1,10 @@ | |||
| ARG GOVERSION=1.24 | |||
| ARG GOVERSION=1.26 | |||
| ARG TARGETARCH | ||
|
|
||
| ARG DELVE_VERSION=1.24.1 | ||
| ARG DELVE_VERSION=1.26.1 |
| context: test/goapp | ||
| docker: | ||
| buildArgs: | ||
| GOVERSION: '1.26' |
Comment on lines
+1
to
+9
| # This test approximates `skaffold debug` for a go app. | ||
| apiVersion: v1 | ||
| kind: Pod | ||
| metadata: | ||
| name: go126pod | ||
| labels: | ||
| app: hello | ||
| protocol: dlv | ||
| runtime: go126 |
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.
Same as #147 , but with support for Golang 1.26