Skip to content

Commit

Permalink
Rollup merge of #114053 - Kobzol:ci-linux-fix-cmake, r=nikic
Browse files Browse the repository at this point in the history
CI: fix CMake installation for 32/64 bit `dist` Linux

Should hopefully fix LLVM 17 build (#114048 (comment)).
  • Loading branch information
matthiaskrgr authored Jul 27, 2023
2 parents c3cd051 + 6c4437e commit 14669cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/ci/docker/host-x86_64/dist-i686-linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ RUN yum upgrade -y && \
automake \
bzip2 \
file \
cmake3 \
gcc \
gcc-c++ \
git \
Expand All @@ -35,7 +34,7 @@ RUN yum upgrade -y && \
zlib-devel.x86_64 \
&& yum clean all

RUN mkdir -p /rustroot/bin && ln -s /usr/bin/cmake3 /rustroot/bin/cmake
RUN mkdir -p /rustroot/bin

ENV PATH=/rustroot/bin:$PATH
ENV LD_LIBRARY_PATH=/rustroot/lib64:/rustroot/lib32:/rustroot/lib
Expand Down
3 changes: 1 addition & 2 deletions src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ RUN yum upgrade -y && \
automake \
bzip2 \
file \
cmake3 \
gcc \
gcc-c++ \
git \
Expand All @@ -35,7 +34,7 @@ RUN yum upgrade -y && \
zlib-devel.x86_64 \
&& yum clean all

RUN mkdir -p /rustroot/bin && ln -s /usr/bin/cmake3 /rustroot/bin/cmake
RUN mkdir -p /rustroot/bin

ENV PATH=/rustroot/bin:$PATH
ENV LD_LIBRARY_PATH=/rustroot/lib64:/rustroot/lib32:/rustroot/lib
Expand Down

0 comments on commit 14669cb

Please sign in to comment.