2015-08-15 05:15:19 -07:00
|
|
|
sudo: false
|
2014-08-14 16:06:16 -07:00
|
|
|
language: cpp
|
2015-07-19 10:24:55 -07:00
|
|
|
|
2016-01-21 07:42:10 -08:00
|
|
|
git:
|
|
|
|
depth: 1
|
|
|
|
|
2016-03-01 11:20:50 -08:00
|
|
|
os: linux
|
2016-03-01 11:59:29 -08:00
|
|
|
compiler: g++-5
|
|
|
|
env: COMPILER=g++-5
|
2016-03-01 11:20:50 -08:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/SFML_LINUX
|
2015-09-05 14:48:10 -07:00
|
|
|
|
2015-07-19 10:24:55 -07:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
2015-07-19 10:35:29 -07:00
|
|
|
- g++-4.7
|
2015-07-19 10:24:55 -07:00
|
|
|
- g++-5
|
2016-03-08 14:19:59 -08:00
|
|
|
- valgrind
|
2016-01-21 07:42:10 -08:00
|
|
|
|
|
|
|
- libfreetype6-dev
|
|
|
|
- libjpeg-dev
|
2015-07-19 10:24:55 -07:00
|
|
|
- libx11-dev
|
|
|
|
- libxrandr-dev
|
2016-01-21 07:42:10 -08:00
|
|
|
- libxcb1-dev
|
|
|
|
- libx11-xcb-dev
|
|
|
|
- libxcb-randr0-dev
|
|
|
|
- libxcb-image0-dev
|
|
|
|
- libgl1-mesa-dev
|
|
|
|
- libflac-dev
|
|
|
|
- libogg-dev
|
|
|
|
- libvorbis-dev
|
|
|
|
- libvorbisenc2
|
|
|
|
- libvorbisfile3
|
|
|
|
- libopenal-dev
|
|
|
|
- libpthread-stubs0-dev
|
|
|
|
|
2015-07-19 10:24:55 -07:00
|
|
|
- libglew-dev
|
|
|
|
- libgpgme11-dev
|
|
|
|
- libsndfile1-dev
|
|
|
|
- libudev-dev
|
2014-08-14 16:06:16 -07:00
|
|
|
|
2015-09-05 14:48:10 -07:00
|
|
|
script:
|
2016-03-01 11:59:29 -08:00
|
|
|
- CXX=$COMPILER;
|
2016-03-01 11:20:50 -08:00
|
|
|
- chmod +x tests/travis_linux_tests.sh
|
|
|
|
- tests/travis_linux_tests.sh
|
2015-11-04 05:39:39 -08:00
|
|
|
|
|
|
|
after_success:
|
2015-11-04 05:46:32 -08:00
|
|
|
- >
|
2016-01-21 07:42:10 -08:00
|
|
|
if [[ $TRAVIS_OS_NAME == 'linux' && $CXX == g++-5 ]]; then
|
2015-11-04 05:46:32 -08:00
|
|
|
bash <(curl -s https://codecov.io/bash) -x gcov-5 -a "-s /home/travis/build/texus/TGUI -pr"
|
|
|
|
fi
|