We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b55c72 commit 103180eCopy full SHA for 103180e
.travis.yml
@@ -27,6 +27,7 @@ matrix:
27
28
install:
29
- ./install-deps.sh
30
+ - export PATH="`pwd`/cmake-3.4.0-Linux-x86_64/bin:${PATH}"
31
# install cmake toolchains and script
32
- POLLY_VERSION="0.7.3"
33
- wget "https://github.com/ruslo/polly/archive/v${POLLY_VERSION}.tar.gz"
install-deps.sh
@@ -6,3 +6,9 @@ if [ "`uname`" == "Darwin" ];
6
then
7
brew install python3
8
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