Skip to content

Commit 14669cb

Browse files
authored
Rollup merge of #114053 - Kobzol:ci-linux-fix-cmake, r=nikic
CI: fix CMake installation for 32/64 bit `dist` Linux Should hopefully fix LLVM 17 build (#114048 (comment)).
2 parents c3cd051 + 6c4437e commit 14669cb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/ci/docker/host-x86_64/dist-i686-linux/Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ RUN yum upgrade -y && \
1212
automake \
1313
bzip2 \
1414
file \
15-
cmake3 \
1615
gcc \
1716
gcc-c++ \
1817
git \
@@ -35,7 +34,7 @@ RUN yum upgrade -y && \
3534
zlib-devel.x86_64 \
3635
&& yum clean all
3736

38-
RUN mkdir -p /rustroot/bin && ln -s /usr/bin/cmake3 /rustroot/bin/cmake
37+
RUN mkdir -p /rustroot/bin
3938

4039
ENV PATH=/rustroot/bin:$PATH
4140
ENV LD_LIBRARY_PATH=/rustroot/lib64:/rustroot/lib32:/rustroot/lib

src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ RUN yum upgrade -y && \
1212
automake \
1313
bzip2 \
1414
file \
15-
cmake3 \
1615
gcc \
1716
gcc-c++ \
1817
git \
@@ -35,7 +34,7 @@ RUN yum upgrade -y && \
3534
zlib-devel.x86_64 \
3635
&& yum clean all
3736

38-
RUN mkdir -p /rustroot/bin && ln -s /usr/bin/cmake3 /rustroot/bin/cmake
37+
RUN mkdir -p /rustroot/bin
3938

4039
ENV PATH=/rustroot/bin:$PATH
4140
ENV LD_LIBRARY_PATH=/rustroot/lib64:/rustroot/lib32:/rustroot/lib

0 commit comments

Comments
 (0)