Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump cmake and wget packages #124

Merged
merged 1 commit into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docker/linux_amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ RUN apt-get install -y -qq software-properties-common
RUN apt-get install -y -qq --fix-missing ninja-build make gcc-multilib g++-multilib libssl-dev wget openjdk-8-jdk zip maven unixodbc-dev libc6-dev-i386 lib32readline6-dev libssl-dev libcurl4-gnutls-dev libexpat1-dev gettext unzip build-essential checkinstall libffi-dev curl libz-dev openssh-client pkg-config autoconf
RUN apt-get install -y -qq ccache

# Install cmake 3.21
RUN mkdir /cmake_3_21 && \
cd /cmake_3_21 && \
wget https://github.com/Kitware/CMake/releases/download/v3.21.3/cmake-3.21.3-linux-x86_64.sh && \
chmod +x cmake-3.21.3-linux-x86_64.sh && \
./cmake-3.21.3-linux-x86_64.sh --skip-license --prefix=/usr/local && \
# Install cmake 3.31
RUN mkdir /cmake_3_31 && \
cd /cmake_3_31 && \
wget https://github.com/Kitware/CMake/releases/download/v3.31.3/cmake-3.31.3-linux-x86_64.sh && \
chmod +x cmake-3.31.3-linux-x86_64.sh && \
./cmake-3.31.3-linux-x86_64.sh --skip-license --prefix=/usr/local && \
cmake --version

# Install GIT
RUN wget https://github.com/git/git/archive/refs/tags/v2.18.5.tar.gz && \
tar xvf v2.18.5.tar.gz && \
cd git-2.18.5 && \
RUN wget https://github.com/git/git/archive/refs/tags/v2.25.0.tar.gz && \
tar xvf v2.25.0.tar.gz && \
cd git-2.25.0 && \
make && \
make prefix=/usr install

Expand Down
18 changes: 9 additions & 9 deletions docker/linux_arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ RUN apt-get install -y -qq ccache autoconf
# Setup cross compiler because GH actions does not have open source arm runners yet
RUN apt-get install -y -qq gcc-aarch64-linux-gnu g++-aarch64-linux-gnu

# Install cmake 3.21
RUN mkdir /cmake_3_21 && \
cd /cmake_3_21 && \
wget https://github.com/Kitware/CMake/releases/download/v3.21.3/cmake-3.21.3-linux-x86_64.sh && \
chmod +x cmake-3.21.3-linux-x86_64.sh && \
./cmake-3.21.3-linux-x86_64.sh --skip-license --prefix=/usr/local && \
# Install cmake 3.31
RUN mkdir /cmake_3_31 && \
cd /cmake_3_31 && \
wget https://github.com/Kitware/CMake/releases/download/v3.31.3/cmake-3.31.3-linux-x86_64.sh && \
chmod +x cmake-3.31.3-linux-x86_64.sh && \
./cmake-3.31.3-linux-x86_64.sh --skip-license --prefix=/usr/local && \
cmake --version

# Install GIT
RUN wget https://github.com/git/git/archive/refs/tags/v2.18.5.tar.gz && \
tar xvf v2.18.5.tar.gz && \
cd git-2.18.5 && \
RUN wget https://github.com/git/git/archive/refs/tags/v2.25.0.tar.gz && \
tar xvf v2.25.0.tar.gz && \
cd git-2.25.0 && \
make && \
make prefix=/usr install

Expand Down
Loading