Added Travis CI script

This commit is contained in:
Thomas Edvalson 2014-04-25 12:32:13 -04:00
parent c51e4822b1
commit e492a253d9

16
.travis.yml Normal file
View file

@ -0,0 +1,16 @@
language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ trusty main universe"
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get -qq update
- sudo apt-get -qq install libgtest-dev g++-4.8 xorg-dev libglu1-mesa-dev
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- git clone https://github.com/glfw/glfw.git
- "cd glfw && mkdir build && cd build && cmake .. && make && sudo make install ; cd -"
- "cd /usr/src/gtest && sudo cmake . && sudo cmake --build . && sudo mv libg* /usr/local/lib/ ; cd -"
script:
- mkdir build && cd build
- cmake ..
- make -j4