Skip to content
This repository was archived by the owner on Dec 20, 2019. It is now read-only.

Commit fe672a8

Browse files
committed
CircleCI: Download prebuilt CMake package from GitHub
1 parent d106843 commit fe672a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ commonSteps: &commonSteps
1616
echo "export CC=gcc-6" >> $BASH_ENV
1717
echo "export CXX=g++-6" >> $BASH_ENV
1818
# install CMake
19-
curl -L -o cmake-x64.tar.gz https://cmake.org/files/v3.10/cmake-3.10.0-Linux-x86_64.tar.gz
19+
curl -L -o cmake-x64.tar.gz https://github.com/Kitware/CMake/releases/download/v3.13.2/cmake-3.13.2-Linux-x86_64.tar.gz
2020
mkdir cmake-x64
2121
tar -xf cmake-x64.tar.gz --strip 1 -C cmake-x64
2222
echo "export PATH=$PWD/cmake-x64/bin:$PATH" >> $BASH_ENV
2323
else
2424
# install CMake
25-
curl -L -o cmake-x64.tar.gz https://cmake.org/files/v3.10/cmake-3.10.0-Darwin-x86_64.tar.gz
25+
curl -L -o cmake-x64.tar.gz https://github.com/Kitware/CMake/releases/download/v3.13.2/cmake-3.13.2-Darwin-x86_64.tar.gz
2626
mkdir cmake-x64
2727
tar -xf cmake-x64.tar.gz --strip 3 -C cmake-x64
2828
# install Ninja

0 commit comments

Comments
 (0)