Let devs install microsoft/go similarly to go install golang.org/dl/go1.16.6
#146
Labels
Area-Acquisition
New ways to acquire our build of Go
See https://golang.org/doc/manage-install#installing-multiple. (A partner team pointed it out to us as a way they get Go. In particular, to compare how different Go versions go when something strange is going on.)
https://github.com/golang/dl is a mirror of the
golang.org/dl
module's repo. It has a package for each version of Go: a small wrapper that can download that specific version to e.g.~/sdk/go1.16.6
, and after that, it redirectsgo1.16.6 [...]
commands to that Go binary it downloaded.The simplest-seeming thing to do would be to copy
dl
and provide ahttps://github.com/microsoft/go-dl
module with e.g. amicrosoft-go1.16.6
package that points at our blob storage instead of the tar.gz/zip files available ondl.google.com/go/
.The text was updated successfully, but these errors were encountered: