# Travis-CI configuration file for SuperTuxKart # # Configuration manual: # http://docs.travis-ci.com/user/build-configuration/ # # Heavily borrowed from SuperTuxKart's travis.yml. # # SuperTuxKart's travis.yml file can be found here: # https://github.com/supertuxkart/stk-code/blob/master/.travis.yml # License: https://github.com/supertuxkart/stk-code/blob/master/COPYING # language: cpp compiler: - gcc - clang matrix: fast_finish: true env: - CMAKE_VERSION=3.0.2 SDL2_VERSION=2.0.3 SDL2IMAGE_VERSION=2.0.0 before_install: - sudo apt-get update -qq - sudo apt-get install build-essential libogg-dev libvorbis-dev libphysfs-dev libglew-dev libopenal-dev libboost-all-dev # Current gcc that supports C++ 11 features - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi # CMake - wget http://www.cmake.org/files/v3.0/cmake-$CMAKE_VERSION.tar.gz -O - | tar xz - (cd cmake-$CMAKE_VERSION && cmake . && make -j5 && sudo make install) # SDL dependencies - wget http://libsdl.org/release/SDL2-$SDL2_VERSION.tar.gz -O - | tar xz - (cd SDL2-$SDL2_VERSION && ./configure --prefix=/usr && make -j5 && sudo make install) - wget http://www.libsdl.org/projects/SDL_image/release/SDL2_image-$SDL2IMAGE_VERSION.tar.gz -O - | tar xz - (cd SDL2_image-$SDL2IMAGE_VERSION && ./configure --prefix=/usr && make -j5 && sudo make install) script: # First a debug build: - mkdir build-debug - cd build-debug - cmake .. -DCMAKE_BUILD_TYPE=Debug - make VERBOSE=1 -j $(nproc) # Then a release build: - cd .. - mkdir build-release - cd build-release - cmake .. -DCMAKE_BUILD_TYPE=Release - make VERBOSE=1 -j $(nproc) notifications: email: - supertux-commit@lists.lethargik.org