We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 019b88a commit 2f81929Copy full SHA for 2f81929
1 file changed
.travis.yml
@@ -23,6 +23,20 @@ before_install:
23
then
24
echo "Building without python3, to make sure that works."
25
fi
26
+ - |
27
+ if ( test "`uname -s`" = "Darwin" )
28
+ then
29
+ #cmake v2.8.12 is installed on the Mac workers now
30
+ #brew update
31
+ #brew install cmake
32
+ echo
33
+ else
34
+ #install a newer cmake since at this time Travis only has version 2.8.7
35
+ echo "yes" | sudo add-apt-repository ppa:kalakris/cmake
36
+ sudo apt-get update -qq
37
+ sudo apt-get install cmake
38
+ fi
39
+
40
script:
41
- make
42
- make test
0 commit comments