Update CMake requirement to latest version
[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 env:
20  - CMAKE_VERSION=3.0.2 SDL2_VERSION=2.0.3 SDL2IMAGE_VERSION=2.0.0
21  
22 before_install:
23  - sudo apt-get update -qq
24  - sudo apt-get install build-essential libogg-dev libvorbis-dev libphysfs-dev libglew-dev libopenal-dev libboost-all-dev
25
26  # Current gcc that supports C++ 11 features
27  - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
28  - sudo apt-get update -qq
29  - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
30  - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
31
32  # CMake
33  - wget http://www.cmake.org/files/v3.0/cmake-$CMAKE_VERSION.tar.gz -O - | tar xz
34  - (cd cmake-$CMAKE_VERSION && cmake . && make -j5 && sudo make install)
35
36  # SDL dependencies
37  - wget http://libsdl.org/release/SDL2-$SDL2_VERSION.tar.gz -O - | tar xz
38  - (cd SDL2-$SDL2_VERSION && ./configure --prefix=/usr && make -j5 && sudo make install)
39  - wget http://www.libsdl.org/projects/SDL_image/release/SDL2_image-$SDL2IMAGE_VERSION.tar.gz -O - | tar xz
40  - (cd SDL2_image-$SDL2IMAGE_VERSION && ./configure --prefix=/usr && make -j5 && sudo make install)
41
42 script:
43  # First a debug build:
44 - mkdir build-debug
45 - cd build-debug
46 - cmake .. -DCMAKE_BUILD_TYPE=Debug -DCHECK_ASSETS=off
47 - make VERBOSE=1 -j5
48 # Then a release build:
49 - cd ..
50 - mkdir build-release
51 - cd build-release
52 - cmake .. -DCMAKE_BUILD_TYPE=Release -DCHECK_ASSETS=off
53 - make VERBOSE=1 -j5
54
55 notifications:
56   email:
57     - supertux-commit@lists.lethargik.org