Update CMake to 3.1.1 in .travis.yml
[supertux.git] / .travis.yml
1 # Travis-CI configuration file for SuperTuxKart
2 #
3 # Configuration manual:
4 # http://docs.travis-ci.com/user/build-configuration/
5 #
6 # Heavily borrowed from SuperTuxKart's travis.yml.
7 #
8 # SuperTuxKart's travis.yml file can be found here:
9 # https://github.com/supertuxkart/stk-code/blob/master/.travis.yml
10 # License: https://github.com/supertuxkart/stk-code/blob/master/COPYING
11 #
12
13 language: cpp
14
15 compiler:
16  - gcc
17  - clang
18
19 matrix:
20  fast_finish: true
21
22 env:
23  - CMAKE_VERSION=3.1.1 SDL2_VERSION=2.0.3 SDL2IMAGE_VERSION=2.0.0
24  
25 before_install:
26  - sudo apt-get update -qq
27  - sudo apt-get install build-essential libogg-dev libvorbis-dev libphysfs-dev libglew-dev libopenal-dev libboost-all-dev
28
29  # Current gcc that supports C++ 11 features
30  - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
31  - sudo apt-get update -qq
32  - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
33  - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
34
35  # CMake
36  - wget http://www.cmake.org/files/v3.1/cmake-$CMAKE_VERSION.tar.gz -O - | tar xz
37  - (cd cmake-$CMAKE_VERSION && cmake . && make -j5 && sudo make install)
38
39  # SDL dependencies
40  - wget http://libsdl.org/release/SDL2-$SDL2_VERSION.tar.gz -O - | tar xz
41  - (cd SDL2-$SDL2_VERSION && ./configure --prefix=/usr && make -j5 && sudo make install)
42  - wget http://www.libsdl.org/projects/SDL_image/release/SDL2_image-$SDL2IMAGE_VERSION.tar.gz -O - | tar xz
43  - (cd SDL2_image-$SDL2IMAGE_VERSION && ./configure --prefix=/usr && make -j5 && sudo make install)
44
45 script:
46  # First a debug build:
47 - mkdir build-debug
48 - cd build-debug
49 - cmake .. -DCMAKE_BUILD_TYPE=Debug
50 - make VERBOSE=1 -j $(nproc)
51 # Then a release build:
52 - cd ..
53 - mkdir build-release
54 - cd build-release
55 - cmake .. -DCMAKE_BUILD_TYPE=Release
56 - make VERBOSE=1 -j $(nproc)
57
58 notifications:
59   email:
60     - supertux-commit@lists.lethargik.org