Skip to content
Open
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
4 changes: 2 additions & 2 deletions ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ RUN apt-get update && \
libssl-dev m4 make ninja-build pkg-config tar wget zlib1g-dev libc6-dbg
# ```

# #### Install CMake v3.22
# #### Install CMake v3.31
WORKDIR /var/tmp/build/cmake
RUN curl -fsSL https://github.com/Kitware/cmake/archive/v3.22.3.tar.gz | \
RUN curl -fsSL https://github.com/Kitware/cmake/archive/v3.31.12.tar.gz | \
tar -xzf - --strip-components=1 && \
./bootstrap && make -j ${NCPU:-4} && make install

Expand Down
4 changes: 2 additions & 2 deletions doc/packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -986,10 +986,10 @@ sudo apt-get --no-install-recommends install -y apt-transport-https apt-utils \
libssl-dev m4 make ninja-build pkg-config tar wget zlib1g-dev libc6-dbg
```

#### Install CMake v3.22
#### Install CMake v3.31

mkdir -p $HOME/Downloads/cmake && cd $HOME/Downloads/cmake curl -fsSL
https://github.com/Kitware/cmake/archive/v3.22.3.tar.gz | \
https://github.com/Kitware/cmake/archive/v3.31.12.tar.gz | \
tar -xzf - --strip-components=1 && \
./bootstrap && make -j ${NCPU:-4} && sudo make install

Expand Down
Loading