Skip to content

Commit cccfd09

Browse files
Bump up CMake version to 3.26.4
Signed-off-by: Naveen Tatikonda <[email protected]>
1 parent ddf9818 commit cccfd09

11 files changed

Lines changed: 13 additions & 13 deletions

docker/ci/config/legacy/windows-servercore-setup.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ scoop install gh
197197
gh version
198198

199199
# Install dev tools
200-
# Lock to 3.23.3
201-
scoop install https://raw.githubusercontent.com/ScoopInstaller/Main/56eed69c3bf04110e306f77ad45cfc8c1c5bb9bc/bucket/cmake.json
200+
# Lock to 3.26.4
201+
scoop install https://raw.githubusercontent.com/ScoopInstaller/Main/22a3d6e16c3688926f575eb80e3cc20286b8cf50/bucket/cmake.json
202202
cmake --version
203203

204204
# Install zip

docker/ci/config/windows-setup.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ scoop install gh
187187
gh version
188188

189189
# Install dev tools
190-
# Lock to 3.23.3
191-
scoop install https://raw.githubusercontent.com/ScoopInstaller/Main/56eed69c3bf04110e306f77ad45cfc8c1c5bb9bc/bucket/cmake.json
190+
# Lock to 3.26.4
191+
scoop install https://raw.githubusercontent.com/ScoopInstaller/Main/22a3d6e16c3688926f575eb80e3cc20286b8cf50/bucket/cmake.json
192192
cmake --version
193193

194194
# Install zip

docker/ci/dockerfiles/current/build.al2.opensearch.x64.arm64.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ RUN git clone -b v0.3.27 --single-branch https://github.com/xianyi/OpenBLAS.git
112112
fi && \
113113
make PREFIX=/usr/local install
114114
ENV LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
115-
RUN pip3 install cmake==3.24.0
115+
RUN pip3 install cmake==3.26.4
116116

117117
# Change User
118118
USER $CONTAINER_USER

docker/ci/dockerfiles/current/build.almalinux8.opensearch.x64.arm64.ppc64le.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ RUN dnf install -y 'dnf-command(config-manager)' && \
8686
dnf config-manager --set-enabled powertools && \
8787
dnf install epel-release -y && dnf repolist && \
8888
dnf install openblas-static lapack gcc-gfortran -y && dnf clean all
89-
RUN pip3 install cmake==3.24.0
89+
RUN pip3 install cmake==3.26.4
9090
# Upgrade gcc
9191
# The setup part is partially based on Austin Dewey's article:
9292
# https://austindewey.com/2019/03/26/enabling-software-collections-binaries-on-a-docker-image/

docker/ci/dockerfiles/current/test.almalinux8.opensearch-dashboards.x64.arm64.ppc64le.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ RUN update-alternatives --set python /usr/bin/python3.9 && \
130130

131131
# Add other dependencies
132132
RUN dnf install -y epel-release && dnf clean all && dnf install -y jq && dnf clean all && rm -rf /var/cache/dnf/* && \
133-
pip3 install cmake==3.24.0
133+
pip3 install cmake==3.26.4
134134

135135
# Tools setup
136136
COPY --chown=0:0 config/yq-setup.sh config/gh-setup.sh /tmp/

docker/ci/dockerfiles/current/test.almalinux8.systemd-base.x64.arm64.ppc64le.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ RUN update-alternatives --set python /usr/bin/python3.9 && \
152152

153153
# Add other dependencies
154154
RUN dnf install -y epel-release && dnf clean all && dnf install -y jq && dnf clean all && \
155-
pip3 install cmake==3.24.0
155+
pip3 install cmake==3.26.4
156156

157157
# We use the version test to check if packages installed correctly
158158
# And get added to the PATH

docker/ci/dockerfiles/current/test.ubuntu2004.systemd-base.x64.arm64.ppc64le.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ RUN apt-get update -y && apt-get upgrade -y && apt-get install -y curl git gnupg
114114
# Install pip packages
115115
RUN curl -SL https://bootstrap.pypa.io/get-pip.py | python && \
116116
pip3 install pip==23.1.2 && pip3 install pipenv==2023.6.12 awscli==1.32.17 && \
117-
pip3 install cmake==3.24.0
117+
pip3 install cmake==3.26.4
118118

119119
# Create user group
120120
RUN apt-get install -y sudo && \

docker/ci/dockerfiles/legacy/build.centos7.opensearch.x64.arm64.ppc64le.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ RUN ln -sfn /usr/local/bin/python3.9 /usr/bin/python3 && \
9191

9292
# Add k-NN Library dependencies
9393
RUN yum install epel-release -y && yum repolist && yum install openblas-static lapack gcc-gfortran -y
94-
RUN pip3 install cmake==3.24.0
94+
RUN pip3 install cmake==3.23.3
9595
# Upgrade gcc
9696
# The setup part is partially based on Austin Dewey's article:
9797
# https://austindewey.com/2019/03/26/enabling-software-collections-binaries-on-a-docker-image/

docker/ci/dockerfiles/legacy/build.rockylinux8.opensearch.x64.arm64.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ RUN dnf install -y 'dnf-command(config-manager)' && \
8686
dnf config-manager --set-enabled powertools && \
8787
dnf install epel-release -y && dnf repolist && \
8888
dnf install openblas-static lapack gcc-gfortran -y && dnf clean all
89-
RUN pip3 install cmake==3.24.0
89+
RUN pip3 install cmake==3.23.3
9090

9191
# Change User
9292
USER $CONTAINER_USER

docker/ci/dockerfiles/legacy/test.rockylinux8.opensearch-dashboards.x64.arm64.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ RUN update-alternatives --set python /usr/bin/python3.9 && \
130130

131131
# Add other dependencies
132132
RUN dnf install -y epel-release && dnf clean all && dnf install -y jq && dnf clean all && rm -rf /var/cache/dnf/* && \
133-
pip3 install cmake==3.24.0
133+
pip3 install cmake==3.23.3
134134

135135
# Tools setup
136136
COPY --chown=0:0 config/yq-setup.sh config/gh-setup.sh /tmp/

0 commit comments

Comments
 (0)