Skip to content

Commit 103180e

Browse files
committed
Install CMake 3.0 on Linux VM
1 parent 5b55c72 commit 103180e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ matrix:
2727

2828
install:
2929
- ./install-deps.sh
30+
- export PATH="`pwd`/cmake-3.4.0-Linux-x86_64/bin:${PATH}"
3031
# install cmake toolchains and script
3132
- POLLY_VERSION="0.7.3"
3233
- wget "https://github.com/ruslo/polly/archive/v${POLLY_VERSION}.tar.gz"

install-deps.sh

+6
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ if [ "`uname`" == "Darwin" ];
66
then
77
brew install python3
88
fi
9+
10+
if [ "`uname`" == "Linux" ];
11+
then
12+
wget --no-check-certificate https://cmake.org/files/v3.4/cmake-3.4.0-Linux-x86_64.tar.gz
13+
tar xf cmake-3.4.0-Linux-x86_64.tar.gz
14+
fi

0 commit comments

Comments
 (0)