Skip to content

Commit

Permalink
tools: Bump CMake 3.25.2 -> 3.26.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Jul 18, 2023
1 parent f98f5f5 commit 502d6c2
Show file tree
Hide file tree
Showing 21 changed files with 101 additions and 101 deletions.
10 changes: 5 additions & 5 deletions tools/docker/images/centos-7.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ ENTRYPOINT ["/usr/bin/bash", "--login", "-c"]
CMD ["/usr/bin/bash", "--login"]
# RUN g++ --version

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

# Install Swig 4.1.1
RUN curl --location-trusted \
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/images/centos-8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ ENTRYPOINT ["/usr/bin/bash", "--login", "-c"]
CMD ["/usr/bin/bash", "--login"]
# RUN g++ --version

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

# Install Swig
RUN dnf -y update \
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/images/debian-10.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ RUN apt-get update -qq \
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

# Install .Net
# see https://docs.microsoft.com/en-us/dotnet/core/install/linux-debian#debian-10-
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/images/debian-11.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ RUN apt-get update -qq \
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

# Install .Net
# see https://docs.microsoft.com/en-us/dotnet/core/install/linux-debian#debian-11-
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/images/opensuse-leap.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ ENV CC=gcc-11 CXX=g++-11
ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

# Install SWIG
RUN zypper refresh \
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/images/ubuntu-18.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ ENV CC=gcc-11 CXX=g++-11
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

# Install SWIG
RUN apt-get update -qq \
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/images/ubuntu-20.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ RUN apt update -qq \
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

# Install SWIG
RUN apt-get update -qq \
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/minizinc-challenge.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt update -qq \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENV CC=gcc-11 CXX=g++-11

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-x86_64.sh" \
&& chmod a+x cmake-3.26.4-linux-x86_64.sh \
&& ./cmake-3.26.4-linux-x86_64.sh --prefix=/usr/local/ --skip-license \
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/python/amd64/manylinux.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ RUN yum -y update \
ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]

# Install CMake 3.25.2
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.25/cmake-3.25.2-linux-x86_64.sh" \
&& chmod a+x cmake-3.25.2-linux-x86_64.sh \
&& ./cmake-3.25.2-linux-x86_64.sh --prefix=/usr --skip-license \
&& rm cmake-3.25.2-linux-x86_64.sh
# Install CMake v3.26.4
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.26/cmake-3.26.4-linux-x86_64.sh" \
&& chmod a+x cmake-3.26.4-linux-x86_64.sh \
&& ./cmake-3.26.4-linux-x86_64.sh --prefix=/usr --skip-license \
&& rm cmake-3.26.4-linux-x86_64.sh

# Install Swig 4.1.1
RUN curl --location-trusted \
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/python/arm64v8/manylinux.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ RUN yum -y update \
ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]

# Install CMake 3.25.2
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.25/cmake-3.25.2-linux-aarch64.sh" \
&& chmod a+x cmake-3.25.2-linux-aarch64.sh \
&& ./cmake-3.25.2-linux-aarch64.sh --prefix=/usr --skip-license \
&& rm cmake-3.25.2-linux-aarch64.sh
# Install CMake v3.26.4
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.26/cmake-3.26.4-linux-aarch64.sh" \
&& chmod a+x cmake-3.26.4-linux-aarch64.sh \
&& ./cmake-3.26.4-linux-aarch64.sh --prefix=/usr --skip-license \
&& rm cmake-3.26.4-linux-aarch64.sh

# Install Swig 4.1.1
RUN curl --location-trusted \
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/test/centos-7/cpp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ ENTRYPOINT ["/usr/bin/bash", "--login", "-c"]
CMD ["/usr/bin/bash", "--login"]
# RUN g++ --version

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

WORKDIR /root
ADD or-tools_amd64_centos-7_cpp_v*.tar.gz .
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/test/centos-8/cpp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ ENTRYPOINT ["/usr/bin/bash", "--login", "-c"]
CMD ["/usr/bin/bash", "--login"]
# RUN g++ --version

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

WORKDIR /root
ADD or-tools_amd64_centos-8_cpp_v*.tar.gz .
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/test/debian-10/cpp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ RUN apt-get update \
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

WORKDIR /root
ADD or-tools_amd64_debian-10_cpp_v*.tar.gz .
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/test/debian-10/python.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ RUN apt-get update \
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

WORKDIR /root
ADD or-tools_amd64_debian-10_python_v*.tar.gz .
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/test/debian-11/cpp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ RUN apt-get update \
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

WORKDIR /root
ADD or-tools_amd64_debian-11_cpp_v*.tar.gz .
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/test/debian-11/python.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ RUN apt-get update \
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

WORKDIR /root
ADD or-tools_amd64_debian-11_python_v*.tar.gz .
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/test/opensuse-leap/cpp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ ENV CC=gcc-11 CXX=g++-11
ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

WORKDIR /root
ADD or-tools_amd64_opensuse-leap_cpp_v*.tar.gz .
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/test/ubuntu-18.04/cpp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ ENV CC=gcc-11 CXX=g++-11
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

#ENV TZ=America/Los_Angeles
#RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
Expand Down
10 changes: 5 additions & 5 deletions tools/docker/test/ubuntu-20.04/cpp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ RUN apt-get update \
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]

# Install CMake 3.25.2
# Install CMake v3.26.4
RUN ARCH=$(uname -m) \
&& wget -q "https://cmake.org/files/v3.25/cmake-3.25.2-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.25.2-linux-${ARCH}.sh \
&& ./cmake-3.25.2-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.25.2-linux-${ARCH}.sh
&& wget -q "https://cmake.org/files/v3.26/cmake-3.26.4-linux-${ARCH}.sh" \
&& chmod a+x cmake-3.26.4-linux-${ARCH}.sh \
&& ./cmake-3.26.4-linux-${ARCH}.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-3.26.4-linux-${ARCH}.sh

WORKDIR /root
ADD or-tools_amd64_ubuntu-20.04_cpp_v*.tar.gz .
Expand Down
10 changes: 5 additions & 5 deletions tools/release/amd64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ RUN yum -y update \
ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]

# Install CMake 3.25.2
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.25/cmake-3.25.2-linux-x86_64.sh" \
&& chmod a+x cmake-3.25.2-linux-x86_64.sh \
&& ./cmake-3.25.2-linux-x86_64.sh --prefix=/usr --skip-license \
&& rm cmake-3.25.2-linux-x86_64.sh
# Install CMake v3.26.4
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.26/cmake-3.26.4-linux-x86_64.sh" \
&& chmod a+x cmake-3.26.4-linux-x86_64.sh \
&& ./cmake-3.26.4-linux-x86_64.sh --prefix=/usr --skip-license \
&& rm cmake-3.26.4-linux-x86_64.sh

# Install Swig 4.1.1
RUN curl --location-trusted \
Expand Down
10 changes: 5 additions & 5 deletions tools/release/arm64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ RUN dnf -y update \
ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]

# Install CMake 3.25.2
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.25/cmake-3.25.2-linux-aarch64.sh" \
&& chmod a+x cmake-3.25.2-linux-aarch64.sh \
&& ./cmake-3.25.2-linux-aarch64.sh --prefix=/usr --skip-license \
&& rm cmake-3.25.2-linux-aarch64.sh
# Install CMake v3.26.4
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.26/cmake-3.26.4-linux-aarch64.sh" \
&& chmod a+x cmake-3.26.4-linux-aarch64.sh \
&& ./cmake-3.26.4-linux-aarch64.sh --prefix=/usr --skip-license \
&& rm cmake-3.26.4-linux-aarch64.sh

# Install Swig 4.1.1
RUN curl --location-trusted \
Expand Down

0 comments on commit 502d6c2

Please sign in to comment.