extract cmake more silently on Travis; fixes #230

This commit is contained in:
Radovan Bast 2018-03-07 11:26:54 +01:00
parent b7cf89b6b6
commit bedf21f4b8

View File

@ -66,9 +66,9 @@ install:
pip install virtualenv
elif [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
pip install --user virtualenv
curl https://cmake.org/files/v3.8/cmake-3.8.0-Linux-x86_64.tar.gz | tar xvz
export PATH=$PWD/cmake-3.8.0-Linux-x86_64/bin:$PATH
export LD_LIBARY_PATH=$PWD/cmake-3.8.0-Linux-x86_64/lib:$LD_LIBRARY_PATH
mkdir -p $HOME/dependencies/cmake
curl -Ls https://cmake.org/files/v3.8/cmake-3.8.0-Linux-x86_64.tar.gz | tar -xz -C $HOME/dependencies/cmake --strip-components=1
export PATH=$HOME/dependencies/cmake/bin${PATH:+:$PATH}
fi
- cmake --version
- virtualenv venv