Skip to content

Commit

Permalink
update dockerfile installed cmake version to 3.27 (#1763)
Browse files Browse the repository at this point in the history
  • Loading branch information
n-morales authored Nov 8, 2024
1 parent dcf7b4f commit 38a5ded
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker-build-v2/amd64-linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN git clone --depth 1 --branch v1.5.6 https://github.com/facebook/zstd.git \

RUN pip3 install --upgrade pip \
&& pip3 install scikit-build \
&& pip3 install cmake==3.25.*
&& pip3 install cmake==3.27.*

WORKDIR /build
RUN mkdir src cache out artifacts && chmod a+rwx cache out artifacts
Expand Down
2 changes: 1 addition & 1 deletion docker-build-v2/amd64-windows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# Using `pipx --global` would be better but it's available only since pipx 1.5
RUN PIPX_HOME=/opt/pipx PIPX_BIN_DIR=/usr/local/bin pipx install cmake==3.25.*
RUN PIPX_HOME=/opt/pipx PIPX_BIN_DIR=/usr/local/bin pipx install cmake==3.27.*

WORKDIR /build
RUN mkdir src cache out artifacts && chmod a+rwx cache out artifacts
Expand Down
4 changes: 2 additions & 2 deletions docker-build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN apt-get update;apt-get install -y \
sed \
unzip \
wget \
xz-utils
xz-utils

# Install MXE and build cross-compile windows gcc
RUN cd /; \
Expand All @@ -49,7 +49,7 @@ RUN cd /; \
# Main Image
FROM ubuntu:18.04

ARG cmake_version=3.25.*
ARG cmake_version=3.27.*
ARG ccache_version="v4.5.1"

COPY --from=mxe /mxe /mxe
Expand Down

0 comments on commit 38a5ded

Please sign in to comment.