Merge pull request #231 from bast/radovan/issue-230

extract cmake more silently on Travis; fixes #230
This commit is contained in:
Radovan Bast 2018-03-07 11:33:49 +01:00 committed by GitHub
commit f6bcd9ff27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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