From 4b06e83885593112ab346c4753cc080ec3ef0ea3 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Tue, 3 Mar 2026 12:26:02 -0800 Subject: [PATCH] [Github][CI] Bump CI containers to LLVM v22.1.0 (#184375) --- .../workflows/containers/github-action-ci-windows/Dockerfile | 2 +- .github/workflows/containers/github-action-ci/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/containers/github-action-ci-windows/Dockerfile b/.github/workflows/containers/github-action-ci-windows/Dockerfile index 50a68c154f92..5a885390b446 100644 --- a/.github/workflows/containers/github-action-ci-windows/Dockerfile +++ b/.github/workflows/containers/github-action-ci-windows/Dockerfile @@ -102,7 +102,7 @@ RUN powershell -Command \ rm actions-runner-win.zip # Set the LLVM_VERSION environment variable -ENV LLVM_VERSION=21.1.8 +ENV LLVM_VERSION=22.1.0 # Download and extract Clang compiler. # Create directories, download, extract, and clean up all in one layer diff --git a/.github/workflows/containers/github-action-ci/Dockerfile b/.github/workflows/containers/github-action-ci/Dockerfile index d3d5b4ffa509..6d3f29898fdb 100644 --- a/.github/workflows/containers/github-action-ci/Dockerfile +++ b/.github/workflows/containers/github-action-ci/Dockerfile @@ -2,7 +2,7 @@ FROM docker.io/library/ubuntu:24.04 AS base ENV LLVM_SYSROOT=/opt/llvm FROM base AS stage1-toolchain -ENV LLVM_VERSION=21.1.8 +ENV LLVM_VERSION=22.1.0 RUN apt-get update && \ apt-get install -y \