[libcxx-commits] [libcxx] f190343 - [libc++] Upgrade to GCC 14 in the CI (#95212)
via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Jun 30 03:14:40 PDT 2024
Author: Nikolas Klauser
Date: 2024-06-30T12:14:37+02:00
New Revision: f1903431558b93f0fc48f195282f61194cb024fe
URL: https://github.com/llvm/llvm-project/commit/f1903431558b93f0fc48f195282f61194cb024fe
DIFF: https://github.com/llvm/llvm-project/commit/f1903431558b93f0fc48f195282f61194cb024fe.diff
LOG: [libc++] Upgrade to GCC 14 in the CI (#95212)
Added:
Modified:
libcxx/utils/ci/Dockerfile
libcxx/utils/ci/docker-compose.yml
Removed:
################################################################################
diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index f9e89c80435fe..86a2c3a9502d4 100644
--- a/libcxx/utils/ci/Dockerfile
+++ b/libcxx/utils/ci/Dockerfile
@@ -91,11 +91,11 @@ RUN sudo apt-get update \
make \
python3 \
python3-dev \
- python3-distutils \
python3-packaging \
+ python3-setuptools \
python3-psutil \
software-properties-common \
- swig4.0 \
+ swig \
unzip \
uuid-dev \
wget \
@@ -290,6 +290,3 @@ FROM builder-base AS actions-builder
WORKDIR /home/runner
USER runner
-
-
-
diff --git a/libcxx/utils/ci/docker-compose.yml b/libcxx/utils/ci/docker-compose.yml
index 28140038725d5..df5df8ce907f1 100644
--- a/libcxx/utils/ci/docker-compose.yml
+++ b/libcxx/utils/ci/docker-compose.yml
@@ -1,7 +1,7 @@
version: '3.7'
x-versions: &compiler_versions
- GCC_LATEST_VERSION: 13
+ GCC_LATEST_VERSION: 14
LLVM_HEAD_VERSION: 19
services:
@@ -12,7 +12,7 @@ services:
dockerfile: Dockerfile
target: buildkite-builder
args:
- BASE_IMAGE: ubuntu:jammy
+ BASE_IMAGE: ubuntu:noble
<<: *compiler_versions
actions-builder:
image: ghcr.io/libcxx/actions-builder:${TAG:-latest}
@@ -30,9 +30,8 @@ services:
dockerfile: Dockerfile
target: android-buildkite-builder
args:
- BASE_IMAGE: ubuntu:jammy
+ BASE_IMAGE: ubuntu:noble
ANDROID_CLANG_VERSION: r498229b
ANDROID_CLANG_PREBUILTS_COMMIT: 5186d132c99aa75dc25207c392e3ea5b93d0107e
ANDROID_SYSROOT_BID: 10957860
<<: *compiler_versions
-
More information about the libcxx-commits
mailing list