Verify both cmake and stepmania install.

This comes from http://docs.travis-ci.com/user/installing-dependencies/
This commit is contained in:
Jason Felds
2015-05-09 14:35:08 -04:00
parent 0b49ae773f
commit 215cf4265c
2 changed files with 7 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/bin/sh
set -ex
wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz
tar -xzvf cmake-3.2.2.tar.gz
cd cmake-3.2.2 && ./configure && make && sudo make install
+1 -3
View File
@@ -28,9 +28,7 @@ before_script:
- sudo apt-get install -y libglu1-mesa-dev
- sudo apt-get install -y mesa-common-dev
- sudo apt-get install -y libglew-dev
- wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz
- tar -xzvf cmake-3.2.2.tar.gz
- cd cmake-3.2.2 && ./configure && make && sudo make install
- ./.install-cmake.sh
script:
- cmake -G 'Unix Makefiles' . && cmake .