Skip to content

Commit eb9eb0b

Browse files
[Github] Bump CI container to LLVM 20.1.1
This patch bumps the CI container to the latest LLVM Release and gets rid of the patch that we were carrying that is in 20.1.1. Pull Request: llvm#132567
1 parent dfa665f commit eb9eb0b

File tree

1 file changed

+1
-7
lines changed
  • .github/workflows/containers/github-action-ci

1 file changed

+1
-7
lines changed

.github/workflows/containers/github-action-ci/Dockerfile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM docker.io/library/ubuntu:22.04 as base
22
ENV LLVM_SYSROOT=/opt/llvm
33

44
FROM base as stage1-toolchain
5-
ENV LLVM_VERSION=19.1.5
5+
ENV LLVM_VERSION=20.1.1
66

77
RUN apt-get update && \
88
apt-get install -y \
@@ -20,12 +20,6 @@ RUN curl -O -L https://github.com/llvm/llvm-project/archive/refs/tags/llvmorg-$L
2020

2121
WORKDIR /llvm-project-llvmorg-$LLVM_VERSION
2222

23-
# Patch to enable better PGO profile data.
24-
# TODO: Remove this for llvm 20
25-
ADD https://github.com/llvm/llvm-project/commit/738250989ce516f02f809bdfde474a039c77e81f.patch .
26-
27-
RUN patch -p1 < 738250989ce516f02f809bdfde474a039c77e81f.patch
28-
2923
RUN cmake -B ./build -G Ninja ./llvm \
3024
-C ./clang/cmake/caches/BOLT-PGO.cmake \
3125
-DBOOTSTRAP_LLVM_ENABLE_LLD=ON \

0 commit comments

Comments
 (0)