Skip to content
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
2 changes: 1 addition & 1 deletion circt-ci-build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ RUN ln -s /usr/bin/clang-21 /usr/bin/clang; \
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
RUN apt install -y g++-11

ADD https://github.com/Kitware/CMake/releases/download/v3.25.2/cmake-3.25.2-linux-x86_64.sh /tmp/cmake_install.sh
ADD https://github.com/Kitware/CMake/releases/download/v3.28.4/cmake-3.28.4-linux-x86_64.sh /tmp/cmake_install.sh
RUN bash /tmp/cmake_install.sh --prefix=/usr/local --skip-license
2 changes: 1 addition & 1 deletion circt-windows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ RUN C:\TEMP\python37-install.exe /quiet InstallAllUsers=1 PrependPath=1 Include_
RUN ("C:\Program Files\Python37\python.exe" -m pip install wheel numpy pyyaml pybind11 nanobind==2.9.2 cocotb~=1.9 cocotb-test~=0.2 jinja2 psutil)

# Get latest version of cmake
ADD https://github.com/Kitware/CMake/releases/download/v3.26.0/cmake-3.26.0-windows-x86_64.msi C:\TEMP\cmake.msi
ADD https://github.com/Kitware/CMake/releases/download/v3.28.4/cmake-3.28.4-windows-x86_64.msi C:\TEMP\cmake.msi
RUN msiexec /i C:\TEMP\cmake.msi

# Install PowerShell
Expand Down
2 changes: 1 addition & 1 deletion install/cmake.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -xe

CMAKE_VER=3.23.2
CMAKE_VER=3.28.4

# Detect the host's architecture to download the appropriate release.
case $(uname -m) in
Expand Down
Loading