Skip to content

Commit 44bb3fa

Browse files
authored
Merge pull request #3304 from Argh4k/golang-tip-fix
Remove previous go instalation in build-go.sh, bump go compiler to 1.24.2
2 parents d7c5c82 + 00dcfb0 commit 44bb3fa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

golang/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
.PHONY: build-go build push
1616

1717
export GCS_BUCKET?=k8s-infra-scale-golang-builds
18-
export GO_COMPILER_PKG?=go1.24.0.linux-amd64.tar.gz
18+
export GO_COMPILER_PKG?=go1.24.2.linux-amd64.tar.gz
1919
export GO_COMPILER_URL?=https://dl.google.com/go/$(GO_COMPILER_PKG)
2020
export ROOT_DIR?=/home/prow/go/src
2121

golang/build-go.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ set -euxo pipefail
1818

1919
function install_go_compiler {
2020
wget -q $GO_COMPILER_URL
21+
rm -rf /usr/local/go
2122
tar -C /usr/local -xzf $GO_COMPILER_PKG
2223
rm $GO_COMPILER_PKG
2324
export PATH=$PATH:/usr/local/go/bin

0 commit comments

Comments
 (0)