Skip to content

Commit 95715dd

Browse files
committed
[libc++] Install GCC 13 in the docker containers
Reviewed By: ldionne, #libc, Mordante Spies: Mordante, libcxx-commits, arichardson Differential Revision: https://reviews.llvm.org/D150695
1 parent 78d8312 commit 95715dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libcxx/utils/ci/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ RUN apt-get update && apt-get install -y llvm-$(($LLVM_HEAD_VERSION - 2))-dev ll
9595
libclang-$(($LLVM_HEAD_VERSION - 2))-dev libclang-$(($LLVM_HEAD_VERSION - 1))-dev libclang-$LLVM_HEAD_VERSION-dev
9696

9797
# Install the most recent GCC, like clang install the previous version as a transition.
98-
ENV GCC_LATEST_VERSION=12
98+
ENV GCC_LATEST_VERSION=13
99+
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
99100
RUN apt-get update && apt install -y gcc-$((GCC_LATEST_VERSION - 1)) g++-$((GCC_LATEST_VERSION - 1))
100101
RUN apt-get update && apt install -y gcc-$GCC_LATEST_VERSION g++-$GCC_LATEST_VERSION
101102

0 commit comments

Comments
 (0)