2014-04-25 16:57:00 +00:00
|
|
|
language: cpp
|
|
|
|
|
2015-08-17 15:14:29 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
|
|
|
osx_image: xcode6.4
|
|
|
|
|
2014-04-25 16:57:00 +00:00
|
|
|
compiler:
|
|
|
|
- clang
|
|
|
|
- gcc
|
|
|
|
|
2015-01-18 09:28:21 +00:00
|
|
|
env:
|
|
|
|
global:
|
2015-10-03 10:16:38 +00:00
|
|
|
- secure: "Vf+FY48nip9JppMnq11105NealdErSWsoUhHo63/V3V+LKfA9guenxCp93/qoSIdSGC/sJwb0yIIMGvkTT/rxDJNh6Z+BWUTb2E0WEIIQbvTJNOSUzoq7dfF1LT61XjVjByFzcbC2xjtaBowmcAYEs1jGUUuEjYVCMmD5lY8hUg="
|
2015-10-02 16:55:18 +00:00
|
|
|
# Which Travis environment to run Coverity on
|
2015-10-03 10:16:38 +00:00
|
|
|
- coverity_scan_run_condition='"$TRAVIS_OS_NAME" = linux -a "$CC" = gcc'
|
2015-10-02 16:55:18 +00:00
|
|
|
# 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
|
2015-07-16 23:45:51 +00:00
|
|
|
|
2014-04-25 16:57:00 +00:00
|
|
|
branches:
|
2015-07-16 23:45:51 +00:00
|
|
|
except:
|
|
|
|
- ppu_recompiler
|
2014-04-25 16:57:00 +00:00
|
|
|
|
2015-08-17 15:14:29 +00:00
|
|
|
matrix:
|
|
|
|
exclude:
|
|
|
|
- os: osx
|
|
|
|
compiler: gcc
|
|
|
|
|
2014-07-09 19:16:17 +00:00
|
|
|
git:
|
|
|
|
submodules: false
|
|
|
|
|
2014-04-25 16:57:00 +00:00
|
|
|
before_install:
|
2015-07-11 00:15:07 +00:00
|
|
|
# shutdown services on Travis, which may have a memory impact
|
2015-08-17 15:14:29 +00:00
|
|
|
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
2015-10-03 13:16:05 +00:00
|
|
|
sudo apt-get install libwxgtk3.0-dev;
|
2016-01-28 17:01:10 +00:00
|
|
|
sudo apt-add-repository -y ppa:libreoffice/ppa;
|
|
|
|
sudo apt-get update;
|
|
|
|
sudo apt-get install libglew-dev;
|
2015-08-17 15:14:29 +00:00
|
|
|
fi;
|
|
|
|
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$CXX" = "g++" ]; then
|
2016-01-03 18:31:00 +00:00
|
|
|
export CXX="g++-5" CC="gcc-5" CXXFLAGS="-Wno-format-security";
|
2015-07-17 00:25:47 +00:00
|
|
|
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01';
|
2015-08-17 15:14:29 +00:00
|
|
|
elif [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
2015-04-09 16:53:10 +00:00
|
|
|
export CXX="clang++-3.6" CC="clang-3.6";
|
|
|
|
fi;
|
|
|
|
# Add coverall for C++ so coverall.io could be triggered. Even it should be --coverage and gcov.
|
2015-08-17 15:14:29 +00:00
|
|
|
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
2015-10-03 13:16:05 +00:00
|
|
|
sudo pip install cpp-coveralls requests[security];
|
2015-08-17 15:14:29 +00:00
|
|
|
else
|
2015-08-19 14:24:57 +00:00
|
|
|
brew update; brew update;
|
|
|
|
brew install glew wxwidgets llvm36;
|
2015-08-17 15:14:29 +00:00
|
|
|
fi;
|
2014-04-25 16:57:00 +00:00
|
|
|
|
|
|
|
before_script:
|
2016-03-20 00:05:12 +00:00
|
|
|
- git submodule update --init asmjit 3rdparty/ffmpeg rsx_program_decompiler GSL libpng Vulkan/glslang Vulkan/Vulkan-LoaderAndValidationLayers
|
2014-04-25 16:57:00 +00:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2015-08-19 14:24:57 +00:00
|
|
|
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then cmake ..; else cmake .. -DLLVM_DIR=/usr/local/opt/llvm36/lib/llvm-3.6/share/llvm/cmake; fi
|
2014-04-25 16:57:00 +00:00
|
|
|
|
2015-10-02 16:55:18 +00:00
|
|
|
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
|
|
|
|
|
2015-01-18 09:28:21 +00:00
|
|
|
addons:
|
2015-10-03 13:16:05 +00:00
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- llvm-toolchain-precise-3.6
|
2015-11-04 13:33:24 +00:00
|
|
|
- kubuntu-backports
|
2015-10-03 13:16:05 +00:00
|
|
|
packages:
|
2015-11-04 13:33:24 +00:00
|
|
|
- cmake
|
2015-10-03 13:16:05 +00:00
|
|
|
- libopenal-dev
|
|
|
|
- freeglut3-dev
|
2016-01-28 17:01:10 +00:00
|
|
|
# - libglew-dev apt version is too old
|
2015-10-03 13:16:05 +00:00
|
|
|
- libc6-dev
|
|
|
|
- llvm-3.6
|
|
|
|
- llvm-3.6-dev
|
|
|
|
- libedit-dev
|
2016-01-03 18:31:00 +00:00
|
|
|
- g++-5
|
|
|
|
- gcc-5
|
2015-10-03 13:16:05 +00:00
|
|
|
- clang-3.6
|
|
|
|
- libstdc++-4.8-dev
|
|
|
|
- lib32stdc++6
|
2016-02-03 17:34:51 +00:00
|
|
|
- zlib1g-dev
|
2015-01-18 09:28:21 +00:00
|
|
|
coverity_scan:
|
|
|
|
project:
|
2015-10-02 16:55:18 +00:00
|
|
|
name: $TRAVIS_REPO_SLUG
|
2015-10-03 10:16:38 +00:00
|
|
|
description: "PS3 emulator/debugger"
|
2015-01-18 10:13:36 +00:00
|
|
|
notification_email: raul.tambre@gmail.com
|
2015-10-03 10:16:38 +00:00
|
|
|
build_command: "make -j 4"
|
2015-10-05 04:53:51 +00:00
|
|
|
branch_pattern: coverity_scan
|
2015-01-18 09:28:21 +00:00
|
|
|
|
2015-04-08 18:02:54 +00:00
|
|
|
after_success:
|
2015-10-03 10:16:38 +00:00
|
|
|
- if [ "$COVERITY_SCAN_BRANCH" != 1 ] && [ "$TRAVIS_OS_NAME" = linux ]; then coveralls --extension .c --extension .cpp --extension .h; fi
|