automatically download appropriate Go version when necessary#37
Merged
asteurer merged 3 commits intobytecodealliance:mainfrom Apr 2, 2026
Merged
automatically download appropriate Go version when necessary#37asteurer merged 3 commits intobytecodealliance:mainfrom
asteurer merged 3 commits intobytecodealliance:mainfrom
Conversation
ddea8ad to
303f6f3
Compare
There are three scenarios where we might need to do this: - Go is not installed at all - Go is installed, but the version is too old - Go is installed and the version is new enough, but the target world uses async features and the installed Go lacks [the required patch](golang/go#76775) In any of those cases, we'll download a suitable version, install it in the current user's cache directory, and run it from there. This also adds a new `--export-pkg-name` parameter corresponding to bytecodealliance/wit-bindgen#1572.
See bytecodealliance/wit-bindgen#1574 for details.
asteurer
approved these changes
Apr 2, 2026
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.
There are three scenarios where we might need to do this:
In any of those cases, we'll download a suitable version, install it in the current user's cache directory, and run it from there.
This also adds a new
--export-pkg-nameparameter corresponding to bytecodealliance/wit-bindgen#1572.Note that this builds on #36 and should not be merged until after that is merged.