Unverified Commit ab474dc4 authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[ci] restrict CMake version for CUDA+Clang jobs (#4104)

* restrict CMake version for CUDA jobs

* Update setup.sh

* Update setup.sh

* Update setup.sh
parent 1d2f3e11
......@@ -97,9 +97,15 @@ else # Linux
curl -sL https://apt.kitware.com/keys/kitware-archive-latest.asc | apt-key add -
apt-add-repository "deb https://apt.kitware.com/ubuntu/ $(lsb_release -cs) main" -y
apt-get update
if [[ $COMPILER == "clang" ]]; then
apt-get install --no-install-recommends -y \
cmake="3.19.5-0kitware1" \
cmake-data="3.19.5-0kitware1"
else
apt-get install --no-install-recommends -y \
cmake
fi
fi
if [[ $SETUP_CONDA != "false" ]]; then
ARCH=$(uname -m)
if [[ $ARCH == "x86_64" ]]; then
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment