[libcxx-commits] [libcxx] f5b8202 - [libc++][CI] Install newer CMake version.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jun 20 10:20:14 PDT 2023
Author: Mark de Wever
Date: 2023-06-20T19:20:08+02:00
New Revision: f5b82022ffa096de1144d2290f17bbcdaf3f82b8
URL: https://github.com/llvm/llvm-project/commit/f5b82022ffa096de1144d2290f17bbcdaf3f82b8
DIFF: https://github.com/llvm/llvm-project/commit/f5b82022ffa096de1144d2290f17bbcdaf3f82b8.diff
LOG: [libc++][CI] Install newer CMake version.
This version allowed testing the std module in C++26 mode.
Reviewed By: #libc, ldionne
Differential Revision: https://reviews.llvm.org/D153227
Added:
Modified:
libcxx/utils/ci/Dockerfile
Removed:
################################################################################
diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index 6e9bbfb06bed3..a7a3eed179032 100644
--- a/libcxx/utils/ci/Dockerfile
+++ b/libcxx/utils/ci/Dockerfile
@@ -111,8 +111,8 @@ RUN bash /tmp/install-cmake.sh --prefix=/usr --exclude-subdir --skip-license
RUN rm /tmp/install-cmake.sh
# Install a newer CMake for modules
-# TODO Remove the duplicated installation when all runtimes can be build with CMake 3.26.
-RUN wget https://github.com/Kitware/CMake/releases/download/v3.26.1/cmake-3.26.1-linux-x86_64.sh -O /tmp/install-cmake.sh
+# TODO Remove the duplicated installation when all runtimes can be build with CMake 3.27.
+RUN wget https://github.com/Kitware/CMake/releases/download/v3.27.0-rc2/cmake-3.27.0-rc2-linux-x86_64.sh -O /tmp/install-cmake.sh
RUN bash /tmp/install-cmake.sh --prefix=/opt --exclude-subdir --skip-license
RUN rm /tmp/install-cmake.sh
More information about the libcxx-commits
mailing list