Skip to content

Commit 5cb3052

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. Reviewers: tstellar Reviewed By: tstellar Pull Request: llvm#132567
1 parent 8bdcd0a commit 5cb3052

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 \
@@ -24,12 +24,6 @@ RUN curl -O -L https://github.com/llvm/llvm-project/archive/refs/tags/llvmorg-$L
2424

2525
WORKDIR /llvm-project-llvmorg-$LLVM_VERSION
2626

27-
# Patch to enable better PGO profile data.
28-
# TODO: Remove this for llvm 20
29-
ADD https://github.com/llvm/llvm-project/commit/738250989ce516f02f809bdfde474a039c77e81f.patch .
30-
31-
RUN patch -p1 < 738250989ce516f02f809bdfde474a039c77e81f.patch
32-
3327
RUN cmake -B ./build -G Ninja ./llvm \
3428
-C ./clang/cmake/caches/BOLT-PGO.cmake \
3529
-DBOOTSTRAP_LLVM_ENABLE_LLD=ON \

0 commit comments

Comments
 (0)