language: cpp os: - linux - osx osx_image: xcode6.4 compiler: - clang - gcc env: global: - secure: "Vf+FY48nip9JppMnq11105NealdErSWsoUhHo63/V3V+LKfA9guenxCp93/qoSIdSGC/sJwb0yIIMGvkTT/rxDJNh6Z+BWUTb2E0WEIIQbvTJNOSUzoq7dfF1LT61XjVjByFzcbC2xjtaBowmcAYEs1jGUUuEjYVCMmD5lY8hUg=" # Which Travis environment to run Coverity on - coverity_scan_run_condition='"$TRAVIS_OS_NAME" = linux -a "$CC" = gcc' # Test mode is for testing if it's working with Coverity. Change to true if testing, to avoid reaching the quota. - coverity_scan_script_test_mode=false branches: except: - ppu_recompiler matrix: exclude: - os: osx compiler: gcc git: submodules: false before_install: # shutdown services on Travis, which may have a memory impact - if [ "$TRAVIS_OS_NAME" = "linux" ]; then service mysql stop; service couchdb stop; service redis-server stop; echo "yes" | sudo apt-add-repository 'deb http://repos.codelite.org/wx3.0/ubuntu/ precise universe'; sudo apt-get install libwxgtk3.0-dev; download_extract() { aria2c -x 16 $1 -o $2 && tar -xf $2; }; fi; - if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9" CXXFLAGS="-Wno-format-security"; export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'; elif [ "$TRAVIS_OS_NAME" = "linux" ]; then export CXX="clang++-3.6" CC="clang-3.6"; fi; # Travis uses CMake 2.8.7. We require 2.8.8. Grab latest # Add coverall for C++ so coverall.io could be triggered. Even it should be --coverage and gcov. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then aria2c -x 16 http://www.cmake.org/files/v3.0/cmake-3.0.0-Linux-i386.sh && chmod a+x cmake-3.0.0-Linux-i386.sh && sudo ./cmake-3.0.0-Linux-i386.sh --skip-license --prefix=/usr; sudo pip install cpp-coveralls requests[security]; else brew update; brew update; brew install glew wxwidgets llvm36; fi; before_script: - git submodule update --init asmjit ffmpeg - mkdir build - cd build - if [ "$TRAVIS_OS_NAME" = "linux" ]; then cmake ..; else cmake .. -DLLVM_DIR=/usr/local/opt/llvm36/lib/llvm-3.6/share/llvm/cmake; fi script: # Add a command to show all the variables. May be useful for debugging Travis. # - echo "--Shell Export Lists START--" ; export -p; echo "--Shell Export Lists STOP--"; # And to ensure the versions of toolchain - echo "--CXX version?"; "$CXX" --version; echo "--CXX version confirmed"; - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make -j 4; fi addons: apt: sources: - ubuntu-toolchain-r-test - llvm-toolchain-precise-3.6 packages: - libopenal-dev - freeglut3-dev - libglew-dev - libc6-dev - llvm-3.6 - llvm-3.6-dev - libedit-dev - aria2 - g++-4.9 - clang-3.6 - libstdc++-4.8-dev - lib32stdc++6 coverity_scan: project: name: $TRAVIS_REPO_SLUG description: "PS3 emulator/debugger" notification_email: raul.tambre@gmail.com build_command: "make -j 4" branch_pattern: coverity_scan after_success: - if [ "$COVERITY_SCAN_BRANCH" != 1 ] && [ "$TRAVIS_OS_NAME" = linux ]; then coveralls --extension .c --extension .cpp --extension .h; fi