Skip to content

Commit b731f78

Browse files
kolyshkingopherbot
authored andcommitted
unix/linux: switch to ubuntu 25.04, Go 1.25.1
Ubuntu 24.10 is not supported since July 2025 (and some of its apt repos are apparently removed), and so mkall.sh no longer works (as of today). Fix this by switching to (currently supported) Ubuntu 25.04. NOTE that we can't switch to - Ubuntu 24.04 LTS release (see CL 618075); - Ubuntu 25.10 as it lacks mips support; - Debian Stable (13) as it also lacks mips support. Also, bump Go to 1.25.1. No changes in generated content after running GOOS=linux GOARCH=amd64 ./mkall.sh Change-Id: I58a4856cda93a85af51f4a519c6e4e25f31a39b4 Reviewed-on: https://go-review.googlesource.com/c/sys/+/706915 Reviewed-by: Sean Liao <[email protected]> Reviewed-by: Michael Pratt <[email protected]> Reviewed-by: Carlos Amedee <[email protected]> Reviewed-by: Tobias Klauser <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Michael Pratt <[email protected]>
1 parent 1edeebe commit b731f78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unix/linux/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.10
1+
FROM ubuntu:25.04
22

33
# Disable interactive prompts on package installation
44
ENV DEBIAN_FRONTEND=noninteractive
@@ -21,9 +21,9 @@ RUN git clone --branch v6.16 --depth 1 https://kernel.googlesource.com/pub/scm/l
2121
RUN git clone --branch release/2.41/master --depth 1 https://sourceware.org/git/glibc.git
2222

2323
# Get Go
24-
ENV GOLANG_VERSION=1.24.5
24+
ENV GOLANG_VERSION=1.25.1
2525
ENV GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
26-
ENV GOLANG_DOWNLOAD_SHA256=10ad9e86233e74c0f6590fe5426895de6bf388964210eac34a6d83f38918ecdc
26+
ENV GOLANG_DOWNLOAD_SHA256=7716a0d940a0f6ae8e1f3b3f4f36299dc53e31b16840dbd171254312c41ca12e
2727

2828
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
2929
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \

0 commit comments

Comments
 (0)