diff --git a/internal/rosa/go.go b/internal/rosa/go.go index e365287..a466bc5 100644 --- a/internal/rosa/go.go +++ b/internal/rosa/go.go @@ -143,7 +143,7 @@ sed -i \ go125 := t.newGo( "1.25.7", "fyylHdBVRUobnBjYj3NKBaYPUw3kGmo2mEELiZonOYurPfbarNU1x77B99Fjut7Q", - finalEnv, ` + []string{"CGO_ENABLED=0"}, ` sed -i \ 's,/lib/ld-musl-`+linuxArch()+`.so.1,/system/bin/linker,' \ cmd/link/internal/`+runtime.GOARCH+`/obj.go @@ -153,6 +153,14 @@ rm \ `, go123, ) - return go125 + return t.newGo( + "1.26.0", + "uHLcrgBc0NMcyTMDLRNAZIcOx0RyQlyekSl9xbWSwj3esEFWJysYLfLa3S8p39Nh", + finalEnv, ` +sed -i \ + 's,/lib/ld-musl-`+linuxArch()+`.so.1,/system/bin/linker,' \ + cmd/link/internal/`+runtime.GOARCH+`/obj.go +`, go125, + ) } func init() { artifactsF[Go] = Toolchain.newGoLatest }