Skip to content

Commit

Permalink
upgrade CMAKE version
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanLiviuVarzaru committed Sep 9, 2024
1 parent ba9115e commit 96af289
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ci_build_images/msan.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ ENV MSAN_SYMBOLIZER_PATH=/msan-libs/bin/llvm-symbolizer-msan

ENV PATH=$MSAN_LIBDIR/bin:$PATH

#Upgrade CMAKE version
RUN wget "https://github.com/Kitware/CMake/releases/download/v3.28.5/cmake-3.28.5-linux-x86_64.tar.gz" \
&& tar -zxvf cmake-3.28.5-linux-x86_64.tar.gz \
&& mv cmake-3.28.5-linux-x86_64 /opt/cmake-3.28.5 \
&& ln -s /opt/cmake-3.28.5/bin/* /usr/local/bin/

RUN mkdir $MSAN_LIBDIR \
&& mkdir $MSAN_LIBDIR/bin \
&& printf "#!/bin/sh\nunset LD_LIBRARY_PATH\nexec llvm-symbolizer-%s \"\$@\"" "${CLANG_VERSION}" > $MSAN_SYMBOLIZER_PATH \
Expand Down

0 comments on commit 96af289

Please sign in to comment.