From ba989368a2bf113d147d066a9eb784f915327e6a Mon Sep 17 00:00:00 2001 From: Andy Aylward Date: Mon, 1 Jun 2026 20:26:54 -0400 Subject: [PATCH] Pin CI base image to ubuntu 24.04 ubuntu:latest rolled to 26.04, whose newer glibc broke the no-sysroot LLVM toolchain's link step in the foreign_cc make bootstrap. --- .github/docker/Dockerfile.ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/docker/Dockerfile.ci b/.github/docker/Dockerfile.ci index 49738cb8..d85043c0 100644 --- a/.github/docker/Dockerfile.ci +++ b/.github/docker/Dockerfile.ci @@ -1,4 +1,4 @@ -FROM ubuntu:latest +FROM ubuntu:24.04 # Set up UTF-8 locale to handle files with special characters ENV LANG=C.UTF-8