X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=.travis.yml;h=66dfc759d1b22f8cb1a86fba1ead8a7db689885a;hb=16821f2758e779138ebfe71b17cbb77f1b1aaf38;hp=c2e33e3377c5a7c8822f7b8ae856be52c68fe8c1;hpb=a2fa9cbc6b71a85267416df97881bd0b9cea4986;p=supertux.git diff --git a/.travis.yml b/.travis.yml index c2e33e337..66dfc759d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,16 @@ language: cpp compiler: - gcc - clang + +matrix: + fast_finish: true + +env: + global: + # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created + # via the "travis encrypt" command using the project repo's public key + - secure: "E3/UuL338/FVeKbWVBH8RWznD3ntT8BZxX9TDTCwoZFTPluI53Bk0G3MdDBFihFYLeTMfNxxrT2n+EnQtf9a6SrUIo1xFYWV3yKNHwFiS0LKn0IvhofPoRsg+Y190Hgq8djFSEU1Gk4pYATSfRYnAAbVxuL51CumGVBgBkplB0A=" + - CMAKE_VERSION=3.1.3 SDL2_VERSION=2.0.3 SDL2IMAGE_VERSION=2.0.0 before_install: - sudo apt-get update -qq @@ -27,37 +37,40 @@ before_install: - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi # CMake - - wget http://www.cmake.org/files/v3.0/cmake-3.0.1.tar.gz -O - | tar xz - - (cd cmake-3.0.1 && cmake . && make && sudo make install) + - wget http://www.cmake.org/files/v3.1/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-2.0.3.tar.gz -O - | tar xz - - (cd SDL2-2.0.3 && ./configure --prefix=/usr && make -j5 && sudo make install) - - wget http://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.0.tar.gz -O - | tar xz - - (cd SDL2_image-2.0.0 && ./configure --prefix=/usr && make -j5 && sudo make install) + - 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: + # Clean from previous Travis build +- git clean -f # First a debug build: - mkdir build-debug - cd build-debug -- cmake .. -DCMAKE_BUILD_TYPE=Debug -DCHECK_ASSETS=off -- make VERBOSE=1 -j 4 +- 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 -DCHECK_ASSETS=off -- make VERBOSE=1 -j 4 +- cmake .. -DCMAKE_BUILD_TYPE=Release +- make VERBOSE=1 -j $(nproc) + +addons: + coverity_scan: + project: + name: "SuperTuxTeam/supertux" + description: "Build submitted via Travis CI" + notification_email: supertux-commit@lists.lethargik.org + build_command_prepend: "cmake . && make clean" + build_command: "make -j 4" + branch_pattern: master notifications: - irc: - channels: - - "irc.freenode.org#supertux" - skip_join: false - use_notice: true - template: - #- "[%{commit}: %{author}] %{message}" - #- "%{build_url}" - - "[%{repository}#%{branch} @%{commit}] %{author}): %{message}" - - "Diff: %{compare_url}" - - "Build: %{build_url}" + email: + - supertux-commit@lists.lethargik.org