Skip to content

Commit

Permalink
Merge branch 'master' into python3
Browse files Browse the repository at this point in the history
  • Loading branch information
lrineau committed Jul 19, 2023
2 parents 78f7943 + 47b0319 commit 5614b39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Debian-stable/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ RUN apt-get update && apt-get install -y \


ENV CGAL_TEST_PLATFORM="Debian-Stable"
ENV CGAL_CMAKE_FLAGS="(-DWITH_CGAL_Qt5=OFF \")"
ENV CGAL_CMAKE_FLAGS="(\"-DWITH_CGAL_Qt5=OFF \")"
ENV INIT_FILE=/tmp/init.cmake
COPY init.cmake /tmp/init.cmake
2 changes: 1 addition & 1 deletion Debian-testing-clang-main/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt-get update -y && apt-get install -y wget \
&& wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc \
&& echo 'deb http://apt.llvm.org/unstable/ llvm-toolchain main' > /etc/apt/sources.list.d/llvm.list \
&& apt-get update -y \
&& apt-get install -y clang \
&& apt-get install -y clang cmake make \
&& apt-get clean all

ENV CXX=/usr/bin/clang++
Expand Down
8 changes: 3 additions & 5 deletions Fedora-rawhide/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ FROM fedora:rawhide
ARG dockerfile_url
ENV DOCKERFILE_URL=$dockerfile_url

RUN echo "install make cmake gcc-c++ \
RUN dnf -y upgrade && \
dnf -y install make cmake gcc-c++ \
util-linux \
gmp-devel.x86_64 mpfr-devel.x86_64 \
boost-devel.x86_64 \
Expand All @@ -21,10 +22,7 @@ RUN echo "install make cmake gcc-c++ \
zlib-devel.x86_64 \
diffutils \
wget \
tar" >> dnf-cmd && \
echo update >> dnf-cmd && \
echo run >> dnf-cmd && \
dnf -y --refresh shell dnf-cmd && rm dnf-cmd && \
tar && \
dnf clean all && \
wget https://registrationcenter-download.intel.com/akdlm/irc_nas/19143/l_tbb_oneapi_p_2021.8.0.25334_offline.sh && \
bash l_tbb_oneapi_p_2021.8.0.25334_offline.sh -a --action install --eula accept -s && \
Expand Down

0 comments on commit 5614b39

Please sign in to comment.