We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d7c5c82 + 00dcfb0 commit 44bb3faCopy full SHA for 44bb3fa
golang/Makefile
@@ -15,7 +15,7 @@
15
.PHONY: build-go build push
16
17
export GCS_BUCKET?=k8s-infra-scale-golang-builds
18
-export GO_COMPILER_PKG?=go1.24.0.linux-amd64.tar.gz
+export GO_COMPILER_PKG?=go1.24.2.linux-amd64.tar.gz
19
export GO_COMPILER_URL?=https://dl.google.com/go/$(GO_COMPILER_PKG)
20
export ROOT_DIR?=/home/prow/go/src
21
golang/build-go.sh
@@ -18,6 +18,7 @@ set -euxo pipefail
function install_go_compiler {
wget -q $GO_COMPILER_URL
+ rm -rf /usr/local/go
22
tar -C /usr/local -xzf $GO_COMPILER_PKG
23
rm $GO_COMPILER_PKG
24
export PATH=$PATH:/usr/local/go/bin
0 commit comments