Skip to content

Commit dd97324

Browse files
mordanteldionneH-G-Hristov
authored
[libc++][CI] Adds GCC trunk image. (#132271)
As discussed during the last monthly meeting we want to be able to test the GCC development version in our CI, but we don't want to commit to support this compiler version. This adds the image to the CI Docker image. At the moment GCC-15 will not pass the CI. Having it in the Docker image makes it possible to validate fixes. --------- Co-authored-by: Louis Dionne <[email protected]> Co-authored-by: Hristo Hristov <[email protected]>
1 parent 2f2100c commit dd97324

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

libcxx/utils/ci/Dockerfile

+14-8
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ FROM $BASE_IMAGE AS builder-base
4848
ENV DEBIAN_FRONTEND=noninteractive
4949

5050
# populated in the docker-compose file
51-
ARG GCC_LATEST_VERSION
52-
ENV GCC_LATEST_VERSION=${GCC_LATEST_VERSION}
51+
ARG GCC_HEAD_VERSION
52+
ENV GCC_HEAD_VERSION=${GCC_HEAD_VERSION}
5353

5454
# populated in the docker-compose file
5555
ARG LLVM_HEAD_VERSION
@@ -147,12 +147,18 @@ RUN <<EOF
147147
set -e
148148
sudo git clone https://github.com/compiler-explorer/infra.git /tmp/ce-infra
149149
(cd /tmp/ce-infra && sudo make ce)
150-
sudo /tmp/ce-infra/bin/ce_install install compilers/c++/x86/gcc $GCC_LATEST_VERSION.1.0
151-
sudo /tmp/ce-infra/bin/ce_install install compilers/c++/x86/gcc $((GCC_LATEST_VERSION - 1)).1.0
152-
sudo ln -s /opt/compiler-explorer/gcc-$GCC_LATEST_VERSION.1.0/bin/gcc /usr/bin/gcc-$GCC_LATEST_VERSION
153-
sudo ln -s /opt/compiler-explorer/gcc-$GCC_LATEST_VERSION.1.0/bin/g++ /usr/bin/g++-$GCC_LATEST_VERSION
154-
sudo ln -s /opt/compiler-explorer/gcc-$((GCC_LATEST_VERSION - 1)).1.0/bin/gcc /usr/bin/gcc-$((GCC_LATEST_VERSION - 1))
155-
sudo ln -s /opt/compiler-explorer/gcc-$((GCC_LATEST_VERSION - 1)).1.0/bin/g++ /usr/bin/g++-$((GCC_LATEST_VERSION - 1))
150+
# Current ToT, we do not guarantee any support in our support matrix.
151+
sudo /tmp/ce-infra/bin/ce_install --enable nightly install compilers/c++/nightly/gcc trunk
152+
sudo ln -s /opt/compiler-explorer/gcc-snapshot/bin/gcc /usr/bin/gcc-$GCC_HEAD_VERSION
153+
sudo ln -s /opt/compiler-explorer/gcc-snapshot/bin/g++ /usr/bin/g++-$GCC_HEAD_VERSION
154+
# The latest release.
155+
sudo /tmp/ce-infra/bin/ce_install install compilers/c++/x86/gcc $((GCC_HEAD_VERSION - 1)).1.0
156+
sudo ln -s /opt/compiler-explorer/gcc-$((GCC_HEAD_VERSION - 1)).1.0/bin/gcc /usr/bin/gcc-$((GCC_HEAD_VERSION - 1))
157+
sudo ln -s /opt/compiler-explorer/gcc-$((GCC_HEAD_VERSION - 1)).1.0/bin/g++ /usr/bin/g++-$((GCC_HEAD_VERSION - 1))
158+
# For CI transitions.
159+
sudo /tmp/ce-infra/bin/ce_install install compilers/c++/x86/gcc $((GCC_HEAD_VERSION - 2)).1.0
160+
sudo ln -s /opt/compiler-explorer/gcc-$((GCC_HEAD_VERSION - 2)).1.0/bin/gcc /usr/bin/gcc-$((GCC_HEAD_VERSION - 2))
161+
sudo ln -s /opt/compiler-explorer/gcc-$((GCC_HEAD_VERSION - 2)).1.0/bin/g++ /usr/bin/g++-$((GCC_HEAD_VERSION - 2))
156162
sudo rm -rf /tmp/ce-infra
157163
EOF
158164

libcxx/utils/ci/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
x-versions: &compiler_versions
2-
GCC_LATEST_VERSION: 14
2+
GCC_HEAD_VERSION: 15
33
LLVM_HEAD_VERSION: 21
44

55
services:

0 commit comments

Comments
 (0)